install-nix-action/node_modules/object-inspect/test/inspect.js
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +01:00

8 lines
222 B
JavaScript

var inspect = require('../');
var test = require('tape');
test('inspect', function (t) {
t.plan(1);
var obj = [ { inspect: function () { return '!XYZ¡' } }, [] ];
t.equal(inspect(obj), '[ !XYZ¡, [] ]');
});