Files
Kmake/test/fixtures/wpt/console/console-log-large-array.any.js
2026-05-26 23:36:42 -07:00

9 lines
240 B
JavaScript

// META: global=window,dedicatedworker,shadowrealm
"use strict";
// https://console.spec.whatwg.org/
test(() => {
console.log(new Array(10000000).fill("x"));
console.log(new Uint8Array(10000000));
}, "Logging large arrays works");