mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-22 08:30:51 +00:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
var test = require('tape');
|
|
var inspect = require('../');
|
|
|
|
var xs = [ 'a', 'b' ];
|
|
xs[5] = 'f';
|
|
xs[7] = 'j';
|
|
xs[8] = 'k';
|
|
|
|
test('holes', function (t) {
|
|
t.plan(1);
|
|
t.equal(
|
|
inspect(xs),
|
|
"[ 'a', 'b', , , , 'f', , 'j', 'k' ]"
|
|
);
|
|
});
|