install-nix-action/node_modules/object-inspect/test/inspect.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +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¡, [] ]');
});