dockerized_openAger/nodered/rootfs/data/node_modules/object-inspect/test/deep.js

10 lines
257 B
JavaScript
Raw Normal View History

2020-10-17 16:42:50 +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] ] ]');
});