mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 10:59:13 +00:00
fix sparse array inspection (#16204)
fix https://github.com/denoland/deno/issues/16202
This commit is contained in:
parent
1ab3691b09
commit
70ad6717df
2 changed files with 15 additions and 3 deletions
|
@ -770,6 +770,16 @@ Deno.test(function consoleTestStringifyIterable() {
|
|||
`[ <1 empty item> ]`,
|
||||
);
|
||||
|
||||
assertEquals(
|
||||
stringify([, , 1]),
|
||||
`[ <2 empty items>, 1 ]`,
|
||||
);
|
||||
|
||||
assertEquals(
|
||||
stringify([1, , , 1]),
|
||||
`[ 1, <2 empty items>, 1 ]`,
|
||||
);
|
||||
|
||||
const withEmptyElAndMoreItems = Array(500);
|
||||
withEmptyElAndMoreItems.fill(0, 50, 80);
|
||||
withEmptyElAndMoreItems.fill(2, 100, 120);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue