web 3d图形渲染器
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.

10 lines
323 B

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