diff options
Diffstat (limited to 'node_modules/object-inspect/test/deep.js')
-rw-r--r-- | node_modules/object-inspect/test/deep.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/node_modules/object-inspect/test/deep.js b/node_modules/object-inspect/test/deep.js deleted file mode 100644 index ff1c7ea..0000000 --- a/node_modules/object-inspect/test/deep.js +++ /dev/null @@ -1,9 +0,0 @@ -var inspect = require('../'); -var test = require('tape'); - -test('deep', function (t) { - t.plan(2); - var obj = [[[[[[500]]]]]]; - t.equal(inspect(obj), '[ [ [ [ [ [Array] ] ] ] ] ]'); - t.equal(inspect(obj, { depth: 2 }), '[ [ [Array] ] ]'); -}); |