1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 17:11:57 +00:00
musix-oss/node_modules/object-inspect/test/inspect.js

21 lines
636 B
JavaScript
Raw Normal View History

2020-03-03 20:30:50 +00:00
var test = require('tape');
var hasSymbols = require('has-symbols')();
var utilInspect = require('../util.inspect');
var inspect = require('..');
test('inspect', function (t) {
t.plan(1);
var obj = [{ inspect: function () { return '!XYZ¡'; } }, []];
t.equal(inspect(obj), '[ !XYZ¡, [] ]');
});
test('inspect custom symbol', { skip: !hasSymbols || !utilInspect }, function (t) {
t.plan(1);
var obj = { inspect: function () { return 'string'; } };
obj[utilInspect.custom] = function () { return 'symbol'; };
t.equal(inspect([obj, []]), '[ ' + (utilInspect.custom ? 'symbol' : 'string') + ', [] ]');
});