summaryrefslogtreecommitdiff
path: root/src/node_modules/object-inspect/test/deep.js
blob: 2f0819835d55755296b60e8d0492dba32778b281 (plain)
1
2
3
4
5
6
7
8
9
10
var inspect = require('../');
var test = require('tape');

test('deep', function (t) {
    t.plan(3);
    var obj = [[[[[[500]]]]]];
    t.equal(inspect(obj), '[ [ [ [ [ [Array] ] ] ] ] ]');
    t.equal(inspect(obj, { depth: 4 }), '[ [ [ [ [Array] ] ] ] ]');
    t.equal(inspect(obj, { depth: 2 }), '[ [ [Array] ] ]');
});