aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/object-inspect/test/undef.js
diff options
context:
space:
mode:
Diffstat (limited to 'backend/node_modules/object-inspect/test/undef.js')
-rw-r--r--backend/node_modules/object-inspect/test/undef.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/backend/node_modules/object-inspect/test/undef.js b/backend/node_modules/object-inspect/test/undef.js
deleted file mode 100644
index e3f4961..0000000
--- a/backend/node_modules/object-inspect/test/undef.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var test = require('tape');
-var inspect = require('../');
-
-var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null };
-
-test('undef and null', function (t) {
- t.plan(1);
- t.equal(
- inspect(obj),
- '{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }'
- );
-});