Intial Commit
This commit is contained in:
20
nodered/rootfs/data/node_modules/object-inspect/test/inspect.js
generated
vendored
Normal file
20
nodered/rootfs/data/node_modules/object-inspect/test/inspect.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
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') + ', [] ]');
|
||||
});
|
||||
Reference in New Issue
Block a user