github-pages-deploy-action/node_modules/object-inspect/test/inspect.js
2019-11-19 07:48:29 -05: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¡, [] ]');
});