Files
setup-haskell/node_modules/object-inspect/test/inspect.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -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¡, [] ]');
});