Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/string.prototype.trimstart/test/index.js')
-rw-r--r--node_modules/string.prototype.trimstart/test/index.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/string.prototype.trimstart/test/index.js b/node_modules/string.prototype.trimstart/test/index.js
new file mode 100644
index 000000000..baff6b59b
--- /dev/null
+++ b/node_modules/string.prototype.trimstart/test/index.js
@@ -0,0 +1,18 @@
+'use strict';
+
+var trimStart = require('../');
+var test = require('tape');
+
+var runTests = require('./tests');
+
+test('as a function', function (t) {
+ t.test('bad array/this value', function (st) {
+ st['throws'](function () { trimStart(undefined, 'a'); }, TypeError, 'undefined is not an object');
+ st['throws'](function () { trimStart(null, 'a'); }, TypeError, 'null is not an object');
+ st.end();
+ });
+
+ runTests(trimStart, t);
+
+ t.end();
+});