diff options
Diffstat (limited to 'school/node_modules/object-inspect/test/holes.js')
-rw-r--r-- | school/node_modules/object-inspect/test/holes.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/school/node_modules/object-inspect/test/holes.js b/school/node_modules/object-inspect/test/holes.js new file mode 100644 index 0000000..87fc8c8 --- /dev/null +++ b/school/node_modules/object-inspect/test/holes.js @@ -0,0 +1,15 @@ +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' ]" + ); +}); |