1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 10:51:56 +00:00
musix-oss/node_modules/object-inspect/test/inspect.js
2020-03-03 22:30:50 +02:00

21 lines
636 B
JavaScript

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