You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
257 B

4 years ago
  1. var inspect = require('../');
  2. var test = require('tape');
  3. test('deep', function (t) {
  4. t.plan(2);
  5. var obj = [[[[[[500]]]]]];
  6. t.equal(inspect(obj), '[ [ [ [ [ [Object] ] ] ] ] ]');
  7. t.equal(inspect(obj, { depth: 2 }), '[ [ [Object] ] ]');
  8. });