summaryrefslogtreecommitdiffstats
path: root/node_modules/object.assign/test/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/object.assign/test/index.js')
-rw-r--r--node_modules/object.assign/test/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/object.assign/test/index.js b/node_modules/object.assign/test/index.js
deleted file mode 100644
index 776b2b3..0000000
--- a/node_modules/object.assign/test/index.js
+++ /dev/null
@@ -1,17 +0,0 @@
-'use strict';
-
-var assign = 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 () { assign(undefined); }, TypeError, 'undefined is not an object');
- st['throws'](function () { assign(null); }, TypeError, 'null is not an object');
- st.end();
- });
-
- runTests(assign, t);
-
- t.end();
-});