diff options
Diffstat (limited to 'school/node_modules/object-inspect/test/undef.js')
-rw-r--r-- | school/node_modules/object-inspect/test/undef.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/school/node_modules/object-inspect/test/undef.js b/school/node_modules/object-inspect/test/undef.js new file mode 100644 index 0000000..e3f4961 --- /dev/null +++ b/school/node_modules/object-inspect/test/undef.js @@ -0,0 +1,12 @@ +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 }' + ); +}); |