mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 08:30:51 +00:00
8 lines
222 B
JavaScript
8 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¡, [] ]');
|
|
});
|