Opal-Estate-Pro/node_modules/object-inspect/test/inspect.js
2019-09-13 09:44:33 +07:00

9 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¡, [] ]');
});