install-nix-action/node_modules/object-inspect/test/deep.js

10 lines
269 B
JavaScript
Raw Permalink Normal View History

2020-02-24 12:29:22 +00:00
var inspect = require('../');
var test = require('tape');
test('deep', function (t) {
t.plan(2);
var obj = [ [ [ [ [ [ 500 ] ] ] ] ] ];
t.equal(inspect(obj), '[ [ [ [ [ [Object] ] ] ] ] ]');
t.equal(inspect(obj, { depth: 2 }), '[ [ [Object] ] ]');
});