summaryrefslogtreecommitdiffstats
path: root/node_modules/object-inspect/test/deep.js
blob: ff1c7eac02b08f61dffb876447b31dd3957fbcb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
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] ] ]');
});