diff --git a/.githooks/pre-push b/.githooks/pre-push index 671d4ef65..52997ae7c 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -225,7 +225,9 @@ if [ -z "${NUB_SKIP_README_TABLE_CHECK:-}" ] && [ -n "$SKILLS_ROOT" ] && [ -f "$ *) base=$(git merge-base "$local_sha" origin/main 2>/dev/null) ;; esac [ -n "$base" ] || { table_touched=1; continue; } - changed=$(git diff --name-only "$base" "$local_sha" -- tests/cross-runtime/ 2>/dev/null) || table_touched=1 + # The checker also validates figures hand-copied into the site and the + # wiki, so a push touching only those surfaces must run it too. + changed=$(git diff --name-only "$base" "$local_sha" -- tests/cross-runtime/ "site/src/app/(home)/page.tsx" site/content/blog/introducing-nub.mdx wiki/research/node-test-suite-leverage.md 2>/dev/null) || table_touched=1 [ -n "$changed" ] && table_touched=1 done < | Lens | files / node passes | nub | deno 2.9.5 | bun 1.4.0 | node 25.9.0 | |------|---------------------|-----|------------|-----------|-------------| -| `denoExclusions` | 5,078 / 5,046 | **98.45%** (97.87) | 74.16% (73.89) | 68.13% (67.84) | 90.15% (89.62) | -| `bunUniverse` | 4,760 / 4,736 | **98.16%** (97.67) | 71.75% (71.49) | 69.83% (69.60) | 89.55% (89.12) | -| `fullCorpus` | 5,664 / 5,616 | **97.40%** (96.61) | 68.07% (67.67) | 63.82% (63.47) | 89.96% (89.23) | -| `fullCorpusNoEngine` | 4,946 / 4,904 | **97.37%** (96.58) | 71.66% (71.25) | 69.51% (69.15) | 90.03% (89.30) | -| `bunUniverseNoEngine` | 4,111 / 4,091 | **98.22%** (97.74) | 76.04% (75.80) | 76.83% (76.60) | 89.54% (89.13) | -| `engineSpecificOnly` | 718 / 712 | **97.61%** (96.80) | 43.40% (43.04) | 24.58% (24.37) | 89.47% (88.72) | +| `denoExclusions` | 5,078 / 5,046 | **98.45%** (97.87) | 74.16% (73.89) | 70.06% (69.75) | 90.15% (89.62) | +| `bunUniverse` | 4,760 / 4,736 | **98.16%** (97.67) | 71.75% (71.49) | 71.79% (71.55) | 89.55% (89.12) | +| `fullCorpus` | 5,664 / 5,616 | **97.40%** (96.61) | 68.07% (67.67) | 65.58% (65.22) | 89.96% (89.23) | +| `fullCorpusNoEngine` | 4,946 / 4,904 | **97.37%** (96.58) | 71.66% (71.25) | 71.41% (71.03) | 90.03% (89.30) | +| `bunUniverseNoEngine` | 4,111 / 4,091 | **98.22%** (97.74) | 76.04% (75.80) | 78.98% (78.74) | 89.54% (89.13) | +| `engineSpecificOnly` | 718 / 712 | **97.61%** (96.80) | 43.40% (43.04) | 25.42% (25.21) | 89.47% (88.72) | Per directory, the three that only run properly with the full checkout, the pty and the compiled fixture (node-relative passes / Node's passes): `pseudo-tty/` nub 28 / 31, deno 15, bun 12; `wpt/` nub 24 / 25, bun 6, deno 0 (see the caveat above); `ffi/` nub 11 / 13, bun 13, deno 13 (both skip every `ffi` test — `common.skip()` exits 0 — which counts as a pass under Node's own convention). @@ -117,13 +117,13 @@ Don't report a single headline percentage as "nub's compatibility" without namin [`results-prior-versions.json`](./results-prior-versions.json) is a historical run on the Node **25.8.1** corpus (bun 1.3.14, deno 2.8.1, 2026-08-20), kept for the before/after comparison recorded in git history; it is not comparable with the table above. -A regenerated `results.json` is only half the update. The published figures are hand-copied into the `COMPAT` array in `site/src/app/(home)/page.tsx` and into the compatibility sentence in `site/content/blog/introducing-nub.mdx`; nothing reads this file at build time, so both drift silently until someone copies them across. +A regenerated `results.json` is only half the update. The published figures are hand-copied into the `COMPAT` array in `site/src/app/(home)/page.tsx` and into the compatibility sentence in `site/content/blog/introducing-nub.mdx`; nothing reads this file at build time. `readme-table.mjs --check` (run by the pre-push hook, including for pushes that touch only those files) fails on a mismatch in any hand-copied figure: both site surfaces' rates, counts, runtime version labels, Node corpus labels and the miss-count prose against `scores.denoExclusions` and `meta`, plus the wiki research doc's lens figures and this README's own retry-flip sentence. The copy step can no longer be skipped silently. ## Wording differences vs behavior differences Not every failure is a defect a user would feel. A runtime can throw the right error at the right moment and word it differently — JavaScriptCore and V8 phrase the same brand check differently, so an `assert.throws({ message })` fails on text alone. That is worth measuring rather than asserting, so we did: re-run the corpus with failure output retained (one change to `run.mjs` — keep `raw.out` in `judge()`; the pass criterion is untouched), then bucket each failure by which keys differ inside `node:assert`'s `Comparison { }` block. -Forgiving every failure whose *only* difference is the message text moves bun 1.4.0 from 66.8% to 68.1% and deno 2.9.5 from 78.4% to 78.8%. nub does not move at all: it executes on the stock Node binary, so its error messages *are* Node's, and the count is zero rather than small. Also forgiving a differing or absent `code`/`name` reaches 69.1% and 80.3%. +Forgiving every failure whose *only* difference is the message text moves bun 1.4.0 from 66.8% to 68.1% and deno 2.9.5 from 78.4% to 78.8% (measured on the 2026-08-29 verdicts, before the `bun test` accommodation shifted bun's baseline; the classification of individual failures is unaffected). nub does not move at all: it executes on the stock Node binary, so its error messages *are* Node's, and the count is zero rather than small. Also forgiving a differing or absent `code`/`name` reaches 69.1% and 80.3%. **The published figures forgive neither, and the second is the reason.** Message text is cosmetic; error identity is not. bun frequently throws a raw JavaScriptCore `TypeError` carrying no `code` property at all, which breaks any program branching on `err.code === 'ERR_INVALID_ARG_TYPE'` — a real incompatibility that a text-only classifier reports as a wording nit. diff --git a/tests/cross-runtime/readme-table.mjs b/tests/cross-runtime/readme-table.mjs index 4980c43d2..b4ce1a6f7 100644 --- a/tests/cross-runtime/readme-table.mjs +++ b/tests/cross-runtime/readme-table.mjs @@ -85,9 +85,107 @@ for (const blk of BLOCKS) { console.log(expected + "\n"); } } +// The published figures are hand-copied onto four surfaces and nothing else +// rechecks them — the homepage COMPAT array, the blog sentence and the wiki +// research doc all drifted when a re-measurement moved a score, and this +// README's own retry-flip sentence went stale twice in one PR. --check +// compares every one against results.json; a missing file exits 2 +// (uncheckable), a mismatch exits 1 like table drift. +function checkHandCopies() { + const by = (lens) => { + const s = results.scores[lens]; + const m = Object.fromEntries(s.runtimes.map((r) => [r.runtime, r])); + return { rate: (rt) => (m[rt].pass / s.nodePass * 100).toFixed(1), pass: (rt) => m[rt].pass, nodePass: s.nodePass }; + }; + const deno = by("denoExclusions"), bun = by("bunUniverse"), full = by("fullCorpus"); + // major.minor from the measured binary, so a re-measure on a newer runtime + // also forces the hand-written 'Bun 1.4' / 'Deno 2.9' labels to move. + const mm = (rt) => version(rt).split(".").slice(0, 2).join("."); + const corpusMM = String(results.meta.corpusNodeVersion || "?").split(".").slice(0, 2).join("."); + const nubMisses = String(deno.nodePass - deno.pass("nub")); + const surfaces = [ + { + file: path.join(HERE, "../../site/src/app/(home)/page.tsx"), + wants: [ + { re: /name: 'Nub', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, lens: deno, rt: "nub" }, + { re: /name: 'Deno [\d.]+', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, lens: deno, rt: "deno" }, + { re: /name: 'Bun [\d.]+', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, lens: deno, rt: "bun" }, + { re: /name: 'Deno ([\d.]+)'/, value: mm("deno"), label: "Deno version label" }, + { re: /name: 'Bun ([\d.]+)'/, value: mm("bun"), label: "Bun version label" }, + { re: /name: 'Node ([\d.]+)'/, value: corpusMM, label: "Node corpus label" }, + { re: /name: 'Node [\d.]+', rate: 100, tests: '([\d,]+) \/ ([\d,]+)'/, values: [n(deno.nodePass), n(deno.nodePass)], label: "Node row counts" }, + { re: /Most of Nub’s (\d+) misses/, value: nubMisses, label: "Nub miss count" }, + { re: /Node (\d+\.\d+)’s own test suite/, value: corpusMM, label: "Node corpus label (prose)" }, + ], + }, + { + file: path.join(HERE, "../../site/content/blog/introducing-nub.mdx"), + wants: [ + { re: /clears ([\d.]+)% of what real Node passes/, lens: deno, rt: "nub" }, + { re: /([\d.]+)% for Deno/, lens: deno, rt: "deno" }, + { re: /([\d.]+)% for Bun/, lens: deno, rt: "bun" }, + { re: /for Deno (\d+\.\d+)/, value: mm("deno"), label: "Deno version label" }, + { re: /for Bun (\d+\.\d+)/, value: mm("bun"), label: "Bun version label" }, + { re: /On Node (\d+\.\d+)'s own test suite/, value: corpusMM, label: "Node corpus label" }, + ], + }, + { + file: path.join(HERE, "../../wiki/research/node-test-suite-leverage.md"), + wants: [ + { re: /skip list: nub ([\d.]+)%, deno ([\d.]+)%, bun ([\d.]+)%/, lens: deno, rts: ["nub", "deno", "bun"] }, + { re: /nothing skipped\): nub ([\d.]+)%, deno ([\d.]+)%, bun ([\d.]+)%/, lens: bun, rts: ["nub", "deno", "bun"] }, + { re: /wrappers: nub ([\d.]+)%, deno ([\d.]+)%, bun ([\d.]+)%/, lens: full, rts: ["nub", "deno", "bun"] }, + ], + }, + { + file: README, + wants: [ + { + re: /flipped (\d+) node, (\d+) nub, (\d+) bun, (\d+) deno and (\d+) node25 verdicts/, + counts: ["node", "nub", "bun", "deno", "node25"].map((rt) => String(results.meta.retried?.[rt]?.flippedToPass ?? "?")), + label: "retry-flip counts vs meta.retried", + }, + ], + }, + ]; + let bad = false; + for (const { file, wants } of surfaces) { + let src; + try { src = fs.readFileSync(file, "utf8"); } catch (e) { console.error(`cannot read ${file}: ${e.message}`); process.exit(2); } + for (const w of wants) { + const m = w.re.exec(src); + const name = w.label || w.rt || (w.rts || []).join("/"); + if (!m) { console.error(`${path.basename(file)}: pattern for ${name} not found (${w.re})`); bad = true; continue; } + if (w.value !== undefined || w.values) { + const list = w.values || [w.value]; + list.forEach((want, i) => { + if (m[1 + i] !== want) { console.error(`${path.basename(file)}: ${name} says ${m[1 + i]}, results.json says ${want}`); bad = true; } + }); + continue; + } + const rts = w.counts ? [] : (w.rts || [w.rt]); + rts.forEach((rt, i) => { + const want = w.lens.rate(rt); + if (m[1 + i] !== want) { console.error(`${path.basename(file)}: ${rt} says ${m[1 + i]}, results.json says ${want}`); bad = true; } + }); + if (w.counts) { + w.counts.forEach((want, i) => { + if (m[1 + i] !== want) { console.error(`${path.basename(file)}: ${name} — position ${i + 1} says ${m[1 + i]}, meta.retried says ${want}`); bad = true; } + }); + } + if (w.rt && m[2] && (m[2] !== n(w.lens.pass(w.rt)) || m[3] !== n(w.lens.nodePass))) { + console.error(`${path.basename(file)}: ${w.rt} tests say ${m[2]} / ${m[3]}, results.json says ${n(w.lens.pass(w.rt))} / ${n(w.lens.nodePass)}`); + bad = true; + } + } + } + return bad; +} + if (process.argv.includes("--check")) { + if (checkHandCopies()) drifted = true; if (drifted) process.exit(1); - console.log("README tables match results.json"); + console.log("README tables and site figures match results.json"); } else if (process.argv.includes("--write")) { fs.writeFileSync(README, readme); console.log("README tables rewritten"); diff --git a/tests/cross-runtime/results.json b/tests/cross-runtime/results.json index 28bac2b92..5d50f96c4 100644 --- a/tests/cross-runtime/results.json +++ b/tests/cross-runtime/results.json @@ -1,11 +1,15 @@ { "meta": { - "generatedAt": "2026-08-29T02:20:57.932Z", + "generatedAt": "2026-08-31T02:25:04.670Z", "platform": "darwin", "corpus": "", "corpusNodeVersion": "26.7.0", "corpusCommit": "b4f23d3619c98bed09af93a21192f6080197a8c6", "binaries": { + "bun": { + "bin": "~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun", + "version": "1.4.0" + }, "node": { "bin": "node", "version": "v26.7.0" @@ -15,10 +19,6 @@ "version": "v0.8.0", "node": "v26.7.0" }, - "bun": { - "bin": "~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun", - "version": "1.4.0" - }, "deno": { "bin": "~/.cache/nub/cross-runtime/deno-2.9.5/bin/deno", "version": "deno 2.9.5 (stable, release, aarch64-apple-darwin)\nv8 15.0.245.2-rusty\ntypescript 6.0.3" @@ -38,6 +38,10 @@ "retryFailures": true, "mergeRetryFailures": true, "retried": { + "bun": { + "retried": 1974, + "flippedToPass": 4 + }, "node": { "retried": 49, "flippedToPass": 1 @@ -46,10 +50,6 @@ "retried": 193, "flippedToPass": 1 }, - "bun": { - "retried": 2073, - "flippedToPass": 4 - }, "deno": { "retried": 1833, "flippedToPass": 2 @@ -61,6 +61,13 @@ } }, "perRuntime": [ + { + "runtime": "bun", + "pass": 3694, + "fail": 1970, + "timeout": 123, + "pct": 65.22 + }, { "runtime": "node", "pass": 5616, @@ -75,13 +82,6 @@ "timeout": 5, "pct": 96.61 }, - { - "runtime": "bun", - "pass": 3595, - "fail": 2069, - "timeout": 106, - "pct": 63.47 - }, { "runtime": "deno", "pass": 3833, @@ -102,6 +102,13 @@ "files": 5078, "nodePass": 5046, "runtimes": [ + { + "runtime": "bun", + "pass": 3535, + "pct": 70.06, + "rawPass": 3542, + "rawPct": 69.75 + }, { "runtime": "node", "pass": 5046, @@ -116,13 +123,6 @@ "rawPass": 4970, "rawPct": 97.87 }, - { - "runtime": "bun", - "pass": 3438, - "pct": 68.13, - "rawPass": 3445, - "rawPct": 67.84 - }, { "runtime": "deno", "pass": 3742, @@ -143,6 +143,13 @@ "files": 4760, "nodePass": 4736, "runtimes": [ + { + "runtime": "bun", + "pass": 3400, + "pct": 71.79, + "rawPass": 3406, + "rawPct": 71.55 + }, { "runtime": "node", "pass": 4736, @@ -157,13 +164,6 @@ "rawPass": 4649, "rawPct": 97.67 }, - { - "runtime": "bun", - "pass": 3307, - "pct": 69.83, - "rawPass": 3313, - "rawPct": 69.6 - }, { "runtime": "deno", "pass": 3398, @@ -184,6 +184,13 @@ "files": 5664, "nodePass": 5616, "runtimes": [ + { + "runtime": "bun", + "pass": 3683, + "pct": 65.58, + "rawPass": 3694, + "rawPct": 65.22 + }, { "runtime": "node", "pass": 5616, @@ -198,13 +205,6 @@ "rawPass": 5472, "rawPct": 96.61 }, - { - "runtime": "bun", - "pass": 3584, - "pct": 63.82, - "rawPass": 3595, - "rawPct": 63.47 - }, { "runtime": "deno", "pass": 3823, @@ -225,6 +225,13 @@ "files": 4946, "nodePass": 4904, "runtimes": [ + { + "runtime": "bun", + "pass": 3502, + "pct": 71.41, + "rawPass": 3513, + "rawPct": 71.03 + }, { "runtime": "node", "pass": 4904, @@ -239,13 +246,6 @@ "rawPass": 4777, "rawPct": 96.58 }, - { - "runtime": "bun", - "pass": 3409, - "pct": 69.51, - "rawPass": 3420, - "rawPct": 69.15 - }, { "runtime": "deno", "pass": 3514, @@ -266,6 +266,13 @@ "files": 4111, "nodePass": 4091, "runtimes": [ + { + "runtime": "bun", + "pass": 3231, + "pct": 78.98, + "rawPass": 3237, + "rawPct": 78.74 + }, { "runtime": "node", "pass": 4091, @@ -280,13 +287,6 @@ "rawPass": 4018, "rawPct": 97.74 }, - { - "runtime": "bun", - "pass": 3143, - "pct": 76.83, - "rawPass": 3149, - "rawPct": 76.6 - }, { "runtime": "deno", "pass": 3111, @@ -307,6 +307,13 @@ "files": 718, "nodePass": 712, "runtimes": [ + { + "runtime": "bun", + "pass": 181, + "pct": 25.42, + "rawPass": 181, + "rawPct": 25.21 + }, { "runtime": "node", "pass": 712, @@ -321,13 +328,6 @@ "rawPass": 695, "rawPct": 96.8 }, - { - "runtime": "bun", - "pass": 175, - "pct": 24.58, - "rawPass": 175, - "rawPct": 24.37 - }, { "runtime": "deno", "pass": 309, @@ -348,6 +348,13 @@ "files": 448, "nodePass": 433, "runtimes": [ + { + "runtime": "bun", + "pass": 118, + "pct": 27.25, + "rawPass": 122, + "rawPct": 27.23 + }, { "runtime": "node", "pass": 433, @@ -362,13 +369,6 @@ "rawPass": 380, "rawPct": 84.82 }, - { - "runtime": "bun", - "pass": 116, - "pct": 26.79, - "rawPass": 120, - "rawPct": 26.79 - }, { "runtime": "deno", "pass": 53, @@ -390,6 +390,13 @@ "files": 10, "nodePass": 10, "runtimes": [ + { + "runtime": "bun", + "pass": 3, + "pct": 30, + "rawPass": 3, + "rawPct": 30 + }, { "runtime": "node", "pass": 10, @@ -404,13 +411,6 @@ "rawPass": 10, "rawPct": 100 }, - { - "runtime": "bun", - "pass": 3, - "pct": 30, - "rawPass": 3, - "rawPct": 30 - }, { "runtime": "deno", "pass": 6, @@ -431,6 +431,13 @@ "files": 94, "nodePass": 93, "runtimes": [ + { + "runtime": "bun", + "pass": 22, + "pct": 23.66, + "rawPass": 22, + "rawPct": 23.4 + }, { "runtime": "node", "pass": 93, @@ -445,13 +452,6 @@ "rawPass": 93, "rawPct": 98.94 }, - { - "runtime": "bun", - "pass": 22, - "pct": 23.66, - "rawPass": 22, - "rawPct": 23.4 - }, { "runtime": "deno", "pass": 27, @@ -472,6 +472,13 @@ "files": 70, "nodePass": 70, "runtimes": [ + { + "runtime": "bun", + "pass": 46, + "pct": 65.71, + "rawPass": 46, + "rawPct": 65.71 + }, { "runtime": "node", "pass": 70, @@ -486,13 +493,6 @@ "rawPass": 70, "rawPct": 100 }, - { - "runtime": "bun", - "pass": 46, - "pct": 65.71, - "rawPass": 46, - "rawPct": 65.71 - }, { "runtime": "deno", "pass": 54, @@ -513,6 +513,13 @@ "files": 242, "nodePass": 240, "runtimes": [ + { + "runtime": "bun", + "pass": 80, + "pct": 33.33, + "rawPass": 80, + "rawPct": 33.06 + }, { "runtime": "node", "pass": 240, @@ -527,13 +534,6 @@ "rawPass": 226, "rawPct": 93.39 }, - { - "runtime": "bun", - "pass": 74, - "pct": 30.83, - "rawPass": 74, - "rawPct": 30.58 - }, { "runtime": "deno", "pass": 103, @@ -554,6 +554,13 @@ "files": 13, "nodePass": 13, "runtimes": [ + { + "runtime": "bun", + "pass": 13, + "pct": 100, + "rawPass": 13, + "rawPct": 100 + }, { "runtime": "node", "pass": 13, @@ -568,13 +575,6 @@ "rawPass": 11, "rawPct": 84.62 }, - { - "runtime": "bun", - "pass": 13, - "pct": 100, - "rawPass": 13, - "rawPct": 100 - }, { "runtime": "deno", "pass": 13, @@ -595,6 +595,13 @@ "files": 38, "nodePass": 34, "runtimes": [ + { + "runtime": "bun", + "pass": 18, + "pct": 52.94, + "rawPass": 18, + "rawPct": 47.37 + }, { "runtime": "node", "pass": 34, @@ -609,13 +616,6 @@ "rawPass": 34, "rawPct": 89.47 }, - { - "runtime": "bun", - "pass": 18, - "pct": 52.94, - "rawPass": 18, - "rawPct": 47.37 - }, { "runtime": "deno", "pass": 23, @@ -637,21 +637,21 @@ "nodePass": 0, "runtimes": [ { - "runtime": "node", + "runtime": "bun", "pass": 0, "pct": 0, "rawPass": 0, "rawPct": 0 }, { - "runtime": "nub", + "runtime": "node", "pass": 0, "pct": 0, "rawPass": 0, "rawPct": 0 }, { - "runtime": "bun", + "runtime": "nub", "pass": 0, "pct": 0, "rawPass": 0, @@ -677,6 +677,13 @@ "files": 112, "nodePass": 112, "runtimes": [ + { + "runtime": "bun", + "pass": 1, + "pct": 0.89, + "rawPass": 1, + "rawPct": 0.89 + }, { "runtime": "node", "pass": 112, @@ -691,13 +698,6 @@ "rawPass": 95, "rawPct": 84.82 }, - { - "runtime": "bun", - "pass": 1, - "pct": 0.89, - "rawPass": 1, - "rawPct": 0.89 - }, { "runtime": "deno", "pass": 59, @@ -718,6 +718,13 @@ "files": 4641, "nodePass": 4618, "runtimes": [ + { + "runtime": "bun", + "pass": 3332, + "pct": 72.15, + "rawPass": 3338, + "rawPct": 71.92 + }, { "runtime": "node", "pass": 4618, @@ -732,13 +739,6 @@ "rawPass": 4531, "rawPct": 97.63 }, - { - "runtime": "bun", - "pass": 3241, - "pct": 70.18, - "rawPass": 3247, - "rawPct": 69.96 - }, { "runtime": "deno", "pass": 3339, @@ -759,6 +759,13 @@ "files": 31, "nodePass": 31, "runtimes": [ + { + "runtime": "bun", + "pass": 12, + "pct": 38.71, + "rawPass": 12, + "rawPct": 38.71 + }, { "runtime": "node", "pass": 31, @@ -773,13 +780,6 @@ "rawPass": 28, "rawPct": 90.32 }, - { - "runtime": "bun", - "pass": 12, - "pct": 38.71, - "rawPass": 12, - "rawPct": 38.71 - }, { "runtime": "deno", "pass": 15, @@ -800,6 +800,13 @@ "files": 66, "nodePass": 66, "runtimes": [ + { + "runtime": "bun", + "pass": 43, + "pct": 65.15, + "rawPass": 43, + "rawPct": 65.15 + }, { "runtime": "node", "pass": 66, @@ -814,13 +821,6 @@ "rawPass": 66, "rawPct": 100 }, - { - "runtime": "bun", - "pass": 43, - "pct": 65.15, - "rawPass": 43, - "rawPct": 65.15 - }, { "runtime": "deno", "pass": 42, @@ -841,6 +841,13 @@ "files": 19, "nodePass": 19, "runtimes": [ + { + "runtime": "bun", + "pass": 2, + "pct": 10.53, + "rawPass": 2, + "rawPct": 10.53 + }, { "runtime": "node", "pass": 19, @@ -855,13 +862,6 @@ "rawPass": 5, "rawPct": 26.32 }, - { - "runtime": "bun", - "pass": 2, - "pct": 10.53, - "rawPass": 2, - "rawPct": 10.53 - }, { "runtime": "deno", "pass": 1, @@ -882,6 +882,13 @@ "files": 36, "nodePass": 36, "runtimes": [ + { + "runtime": "bun", + "pass": 32, + "pct": 88.89, + "rawPass": 32, + "rawPct": 88.89 + }, { "runtime": "node", "pass": 36, @@ -896,13 +903,6 @@ "rawPass": 36, "rawPct": 100 }, - { - "runtime": "bun", - "pass": 32, - "pct": 88.89, - "rawPass": 32, - "rawPct": 88.89 - }, { "runtime": "deno", "pass": 32, @@ -923,6 +923,13 @@ "files": 119, "nodePass": 118, "runtimes": [ + { + "runtime": "bun", + "pass": 68, + "pct": 57.63, + "rawPass": 68, + "rawPct": 57.14 + }, { "runtime": "node", "pass": 118, @@ -937,13 +944,6 @@ "rawPass": 118, "rawPct": 99.16 }, - { - "runtime": "bun", - "pass": 66, - "pct": 55.93, - "rawPass": 66, - "rawPct": 55.46 - }, { "runtime": "deno", "pass": 59, @@ -965,21 +965,21 @@ "nodePass": 3, "runtimes": [ { - "runtime": "node", + "runtime": "bun", "pass": 3, "pct": 100, "rawPass": 3, "rawPct": 33.33 }, { - "runtime": "nub", + "runtime": "node", "pass": 3, "pct": 100, "rawPass": 3, "rawPct": 33.33 }, { - "runtime": "bun", + "runtime": "nub", "pass": 3, "pct": 100, "rawPass": 3, @@ -1005,6 +1005,13 @@ "files": 107, "nodePass": 99, "runtimes": [ + { + "runtime": "bun", + "pass": 2, + "pct": 2.02, + "rawPass": 7, + "rawPct": 6.54 + }, { "runtime": "node", "pass": 99, @@ -1019,13 +1026,6 @@ "rawPass": 93, "rawPct": 86.92 }, - { - "runtime": "bun", - "pass": 2, - "pct": 2.02, - "rawPass": 7, - "rawPct": 6.54 - }, { "runtime": "deno", "pass": 19, @@ -1046,6 +1046,13 @@ "files": 1, "nodePass": 1, "runtimes": [ + { + "runtime": "bun", + "pass": 0, + "pct": 0, + "rawPass": 0, + "rawPct": 0 + }, { "runtime": "node", "pass": 1, @@ -1060,13 +1067,6 @@ "rawPass": 1, "rawPct": 100 }, - { - "runtime": "bun", - "pass": 0, - "pct": 0, - "rawPass": 0, - "rawPct": 0 - }, { "runtime": "deno", "pass": 0, @@ -1087,6 +1087,13 @@ "files": 26, "nodePass": 26, "runtimes": [ + { + "runtime": "bun", + "pass": 0, + "pct": 0, + "rawPass": 0, + "rawPct": 0 + }, { "runtime": "node", "pass": 26, @@ -1101,13 +1108,6 @@ "rawPass": 26, "rawPct": 100 }, - { - "runtime": "bun", - "pass": 0, - "pct": 0, - "rawPass": 0, - "rawPct": 0 - }, { "runtime": "deno", "pass": 26, @@ -1128,6 +1128,13 @@ "files": 4, "nodePass": 2, "runtimes": [ + { + "runtime": "bun", + "pass": 0, + "pct": 0, + "rawPass": 0, + "rawPct": 0 + }, { "runtime": "node", "pass": 2, @@ -1142,13 +1149,6 @@ "rawPass": 2, "rawPct": 50 }, - { - "runtime": "bun", - "pass": 0, - "pct": 0, - "rawPass": 0, - "rawPct": 0 - }, { "runtime": "deno", "pass": 2, @@ -1169,6 +1169,13 @@ "files": 25, "nodePass": 25, "runtimes": [ + { + "runtime": "bun", + "pass": 6, + "pct": 24, + "rawPass": 6, + "rawPct": 24 + }, { "runtime": "node", "pass": 25, @@ -1183,13 +1190,6 @@ "rawPass": 24, "rawPct": 96 }, - { - "runtime": "bun", - "pass": 6, - "pct": 24, - "rawPass": 6, - "rawPct": 24 - }, { "runtime": "deno", "pass": 0, @@ -1364,250 +1364,6 @@ ] }, "fails": { - "node": [ - "async-hooks/test-graph.signal.js", - "es-module/test-esm-detect-ambiguous.mjs", - "es-module/test-esm-import-meta-main-eval.mjs", - "internet/test-corepack-yarn-install.js", - "internet/test-dgram-multicast-ssmv6-multi-process.js", - "internet/test-net-autoselectfamily-events-failure.js", - "internet/test-net-autoselectfamily-timeout-close.js", - "message/test-testpy-env-var-via-comment.js", - "parallel/test-cli-options-as-flags.js", - "parallel/test-cluster-dgram-1.js", - "parallel/test-common.js", - "parallel/test-config-file.js", - "parallel/test-dns-channel-timeout.js", - "parallel/test-dotenv-node-options.js", - "parallel/test-node-output-console.mjs", - "parallel/test-node-run.js", - "parallel/test-parse-test-envs.js", - "parallel/test-parse-test-only-envs.js", - "parallel/test-permission-audit-child-process-inherit-flags.js", - "parallel/test-permission-child-process-inherit-flags-substring.js", - "parallel/test-permission-child-process-inherit-flags.js", - "parallel/test-process-getactiveresources-track-active-requests.js", - "parallel/test-process-getactiveresources.js", - "parallel/test-runner-execution-ordered-bypass.mjs", - "parallel/test-runner-reporters.js", - "parallel/test-shadow-realm-gc-module.js", - "parallel/test-shadow-realm-gc.js", - "parallel/test-snapshot-incompatible.js", - "parallel/test-sqlite-backup.mjs", - "parallel/test-testpy-env-var-via-comment.js", - "parallel/test-zlib-brotli-kmaxlength-rangeerror.js", - "sequential/test-util-debug.js", - "system-ca/test-native-intermediate-certs.mjs", - "system-ca/test-native-root-certs-env.mjs", - "system-ca/test-native-root-certs.mjs", - "system-ca/test-set-default-ca-certificates-append-system-ca.mjs", - "system-ca/test-use-system-ca-worker-disable.mjs", - "system-ca/test-use-system-ca-worker-enable.mjs", - "test-runner/test-output-arbitrary-output-colored.mjs", - "test-runner/test-output-coverage-with-mock.mjs", - "test-runner/test-output-junit-reporter.mjs", - "test-runner/test-output-lcov-reporter.mjs", - "test-runner/test-output-non-tty-forced-color-output.mjs", - "test-runner/test-output-output.mjs", - "test-runner/test-output-spec-reporter.mjs", - "test-runner/test-watch-create-isolation-none.mjs", - "wasm-allocation/test-wasm-allocation-memory64.js", - "wasm-allocation/test-wasm-allocation.js" - ], - "nub": [ - "async-hooks/test-graph.signal.js", - "es-module/test-cjs-legacyMainResolve-permission.js", - "es-module/test-esm-detect-ambiguous.mjs", - "es-module/test-esm-import-assertion-warning.mjs", - "es-module/test-esm-import-attributes-errors.js", - "es-module/test-esm-import-attributes-errors.mjs", - "es-module/test-esm-import-text-disabled.mjs", - "es-module/test-esm-import-text.mjs", - "es-module/test-esm-module-not-found-commonjs-hint.mjs", - "es-module/test-loaders-hidden-from-users.js", - "es-module/test-require-module-tla-error-snapshot.mjs", - "es-module/test-require-module-warning.js", - "es-module/test-require-node-modules-warning.js", - "es-module/test-typescript-commonjs.mjs", - "es-module/test-typescript.mjs", - "es-module/test-vm-main-context-default-loader-eval.js", - "es-module/test-vm-main-context-default-loader.js", - "ffi/test-ffi-permission-allow-cli.js", - "ffi/test-ffi-permissions.js", - "internet/test-corepack-yarn-install.js", - "internet/test-dgram-multicast-ssmv6-multi-process.js", - "internet/test-net-autoselectfamily-events-failure.js", - "internet/test-net-autoselectfamily-timeout-close.js", - "message/test-testpy-env-var-via-comment.js", - "module-hooks/test-async-loader-hooks-called-with-expected-args.mjs", - "module-hooks/test-async-loader-hooks-called-with-register.mjs", - "module-hooks/test-async-loader-hooks-process-exit-async.mjs", - "module-hooks/test-module-hooks-load-builtin-import.mjs", - "module-hooks/test-module-hooks-load-builtin-override-commonjs.js", - "module-hooks/test-module-hooks-load-builtin-override-json.js", - "module-hooks/test-module-hooks-load-builtin-override-module.js", - "module-hooks/test-module-hooks-load-builtin-require.js", - "module-hooks/test-module-hooks-resolve-builtin-builtin-import.mjs", - "module-hooks/test-module-hooks-resolve-builtin-builtin-require.js", - "module-hooks/test-module-hooks-resolve-builtin-on-disk-import.mjs", - "module-hooks/test-module-hooks-resolve-builtin-on-disk-require-with-prefix.js", - "module-hooks/test-module-hooks-resolve-builtin-on-disk-require.js", - "module-hooks/test-module-hooks-resolve-load-builtin-override-both-prefix.js", - "module-hooks/test-module-hooks-resolve-load-builtin-override-both.js", - "module-hooks/test-module-hooks-resolve-load-builtin-redirect-prefix.js", - "module-hooks/test-module-hooks-resolve-load-builtin-redirect.js", - "parallel/test-bootstrap-modules.js", - "parallel/test-cli-options-as-flags.js", - "parallel/test-cli-permission-deny-fs.js", - "parallel/test-cli-permission-multiple-allow.js", - "parallel/test-cluster-dgram-1.js", - "parallel/test-code-cache.js", - "parallel/test-common.js", - "parallel/test-compile-cache-api-options-portable-env.js", - "parallel/test-compile-cache-api-permission.js", - "parallel/test-compile-cache-api-portable.js", - "parallel/test-compile-cache-permission-allowed.js", - "parallel/test-compile-cache-permission-disallowed.js", - "parallel/test-compile-cache-typescript-commonjs.js", - "parallel/test-compile-cache-typescript-esm.js", - "parallel/test-compile-cache-typescript-strip-sourcemaps.js", - "parallel/test-config-file.js", - "parallel/test-debugger-probe-typescript.js", - "parallel/test-dns-channel-timeout.js", - "parallel/test-dotenv-node-options.js", - "parallel/test-eventsource-disabled.js", - "parallel/test-http-parser-lazy-loaded.js", - "parallel/test-internal-modules.js", - "parallel/test-node-output-console.mjs", - "parallel/test-node-output-errors.mjs", - "parallel/test-node-run.js", - "parallel/test-os-checked-function.js", - "parallel/test-parse-test-envs.js", - "parallel/test-parse-test-only-envs.js", - "parallel/test-permission-allow-child-process-cli.js", - "parallel/test-permission-allow-inspector.js", - "parallel/test-permission-allow-wasi-cli.js", - "parallel/test-permission-allow-worker-cli.js", - "parallel/test-permission-audit-child-process-inherit-flags.js", - "parallel/test-permission-child-process-cli.js", - "parallel/test-permission-child-process-inherit-flags-substring.js", - "parallel/test-permission-child-process-inherit-flags.js", - "parallel/test-permission-config-file.mjs", - "parallel/test-permission-diagnostics-channel.js", - "parallel/test-permission-drop-child-process.js", - "parallel/test-permission-drop-diagnostics-channel.js", - "parallel/test-permission-drop-errors.js", - "parallel/test-permission-drop-ffi.js", - "parallel/test-permission-drop-fs-all.js", - "parallel/test-permission-drop-fs-granted-path.js", - "parallel/test-permission-drop-fs-read.js", - "parallel/test-permission-drop-fs-scope.js", - "parallel/test-permission-drop-fs-specific-path.js", - "parallel/test-permission-drop-fs-write.js", - "parallel/test-permission-drop-net.js", - "parallel/test-permission-drop-worker.js", - "parallel/test-permission-fs-absolute-path.js", - "parallel/test-permission-fs-filehandle-utimes.js", - "parallel/test-permission-fs-internal-module-stat.js", - "parallel/test-permission-fs-read-entrypoint.js", - "parallel/test-permission-fs-read.js", - "parallel/test-permission-fs-relative-path.js", - "parallel/test-permission-fs-repeat-path.js", - "parallel/test-permission-fs-require.js", - "parallel/test-permission-fs-symlink-relative.js", - "parallel/test-permission-fs-symlink-target-write.js", - "parallel/test-permission-fs-symlink.js", - "parallel/test-permission-fs-traversal-path.js", - "parallel/test-permission-fs-wildcard.js", - "parallel/test-permission-fs-windows-path.js", - "parallel/test-permission-fs-write-v8.js", - "parallel/test-permission-fs-write.js", - "parallel/test-permission-has.js", - "parallel/test-permission-inspector.js", - "parallel/test-permission-net-allowed.js", - "parallel/test-permission-net-dns.js", - "parallel/test-permission-net-quic.mjs", - "parallel/test-permission-net-udp.js", - "parallel/test-permission-net-uds.js", - "parallel/test-permission-net-warning.js", - "parallel/test-permission-net-websocket.js", - "parallel/test-permission-no-addons.js", - "parallel/test-permission-openssl-store.js", - "parallel/test-permission-sqlite-load-extension.js", - "parallel/test-permission-warning-flags.js", - "parallel/test-permission-wasi.js", - "parallel/test-permission-worker-threads-cli.js", - "parallel/test-process-execve-permission-fail.js", - "parallel/test-process-execve-permission-granted.js", - "parallel/test-process-getactiveresources-track-active-requests.js", - "parallel/test-process-getactiveresources.js", - "parallel/test-process-load-env-file.js", - "parallel/test-process-versions.js", - "parallel/test-repl-permission-model.js", - "parallel/test-repl.js", - "parallel/test-runner-coverage-default-exclusion.mjs", - "parallel/test-runner-coverage-source-map.js", - "parallel/test-runner-coverage-thresholds.js", - "parallel/test-runner-coverage.js", - "parallel/test-runner-execution-ordered-bypass.mjs", - "parallel/test-runner-flag-propagation.js", - "parallel/test-runner-reporters.js", - "parallel/test-shadow-realm-gc-module.js", - "parallel/test-shadow-realm-gc.js", - "parallel/test-snapshot-incompatible.js", - "parallel/test-sqlite-backup.mjs", - "parallel/test-testpy-env-var-via-comment.js", - "parallel/test-tls-clientcertengine-unsupported.js", - "parallel/test-tls-keyengine-unsupported.js", - "parallel/test-util-inspect.js", - "parallel/test-v8-coverage.js", - "parallel/test-vm-cached-data.js", - "parallel/test-vm-dynamic-import-callback-missing-flag.js", - "parallel/test-zlib-brotli-kmaxlength-rangeerror.js", - "parallel/test-zlib-kmaxlength-rangeerror.js", - "parallel/test-zlib-zstd-kmaxlength-rangeerror.js", - "pseudo-tty/test-fatal-error.js", - "pseudo-tty/test-start-trace-sigint.js", - "pseudo-tty/test-trace-sigint.js", - "report/test-report-fatalerror-oomerror-compact.js", - "report/test-report-fatalerror-oomerror-directory.js", - "report/test-report-fatalerror-oomerror-filename.js", - "report/test-report-fatalerror-oomerror-set.js", - "report/test-report-getreport.js", - "report/test-report-signal.js", - "report/test-report-uncaught-exception-compat.js", - "report/test-report-uncaught-exception-primitives.js", - "report/test-report-uncaught-exception-symbols.js", - "report/test-report-uncaught-exception.js", - "report/test-report-uv-handles.js", - "report/test-report-worker.js", - "report/test-report-writereport-exclude-env.js", - "report/test-report-writereport.js", - "sequential/test-util-debug.js", - "system-ca/test-native-intermediate-certs.mjs", - "system-ca/test-native-root-certs-env.mjs", - "system-ca/test-native-root-certs.mjs", - "system-ca/test-set-default-ca-certificates-append-system-ca.mjs", - "system-ca/test-use-system-ca-worker-disable.mjs", - "system-ca/test-use-system-ca-worker-enable.mjs", - "test-runner/test-output-abort-suite.mjs", - "test-runner/test-output-abort.mjs", - "test-runner/test-output-arbitrary-output-colored.mjs", - "test-runner/test-output-coverage-width-100-uncovered-lines.mjs", - "test-runner/test-output-coverage-width-150-uncovered-lines.mjs", - "test-runner/test-output-coverage-width-80-uncovered-lines.mjs", - "test-runner/test-output-coverage-width-infinity-uncovered-lines.mjs", - "test-runner/test-output-coverage-with-mock.mjs", - "test-runner/test-output-junit-reporter.mjs", - "test-runner/test-output-non-tty-forced-color-output.mjs", - "test-runner/test-output-output.mjs", - "test-runner/test-output-spec-reporter.mjs", - "test-runner/test-output-typescript-coverage.mjs", - "test-runner/test-watch-create-isolation-none.mjs", - "wasm-allocation/test-wasm-allocation-memory64.js", - "wasm-allocation/test-wasm-allocation.js", - "wpt/test-webidl.js" - ], "bun": [ "abort/test-abort-fatal-error.js", "abort/test-abort-uncaught-exception.js", @@ -1717,10 +1473,8 @@ "es-module/test-cjs-legacyMainResolve.js", "es-module/test-disable-require-module-with-detection.js", "es-module/test-esm-basic-imports.mjs", - "es-module/test-esm-cjs-builtins.js", "es-module/test-esm-cjs-exports.js", "es-module/test-esm-cjs-load-error-note.mjs", - "es-module/test-esm-cjs-main.js", "es-module/test-esm-cjs-named-error.mjs", "es-module/test-esm-custom-exports.mjs", "es-module/test-esm-data-urls.js", @@ -1732,7 +1486,6 @@ "es-module/test-esm-dynamic-import-commonjs.js", "es-module/test-esm-dynamic-import-commonjs.mjs", "es-module/test-esm-dynamic-import.js", - "es-module/test-esm-encoded-path-native.js", "es-module/test-esm-encoded-path.mjs", "es-module/test-esm-error-cache.js", "es-module/test-esm-experimental-warnings.mjs", @@ -1785,7 +1538,6 @@ "es-module/test-esm-named-exports.mjs", "es-module/test-esm-namespace.mjs", "es-module/test-esm-non-js.mjs", - "es-module/test-esm-nowarn-exports.mjs", "es-module/test-esm-package-map-basic.mjs", "es-module/test-esm-package-map-boundaries.mjs", "es-module/test-esm-package-map-errors.mjs", @@ -1798,7 +1550,6 @@ "es-module/test-esm-preserve-symlinks-main.js", "es-module/test-esm-preserve-symlinks.js", "es-module/test-esm-register-deprecation.mjs", - "es-module/test-esm-repl-imports.js", "es-module/test-esm-require-race-condition.js", "es-module/test-esm-resolve-type.mjs", "es-module/test-esm-source-map.mjs", @@ -1874,7 +1625,6 @@ "es-module/test-require-module-warning.js", "es-module/test-require-module.js", "es-module/test-require-node-modules-warning.js", - "es-module/test-typescript.mjs", "es-module/test-vm-main-context-default-loader-eval.js", "es-module/test-vm-main-context-default-loader.js", "es-module/test-vm-source-text-module-leak.js", @@ -2020,19 +1770,10 @@ "parallel/test-abortsignal-cloneable.js", "parallel/test-abortsignal-drop-settled-signals.mjs", "parallel/test-accessor-properties.js", - "parallel/test-arm-math-illegal-instruction.js", - "parallel/test-assert-checktag.js", - "parallel/test-assert-class-destructuring.js", - "parallel/test-assert-class.js", - "parallel/test-assert-deep-with-error.js", "parallel/test-assert-deep.js", - "parallel/test-assert-esm-cjs-message-verify.js", - "parallel/test-assert-fail.js", "parallel/test-assert-first-line.js", - "parallel/test-assert-if-error.js", "parallel/test-assert-myers-diff.js", "parallel/test-assert-partial-deep-equal.js", - "parallel/test-assert-typedarray-deepequal.js", "parallel/test-assert.js", "parallel/test-async-hooks-async-await.js", "parallel/test-async-hooks-close-during-destroy.js", @@ -2085,7 +1826,6 @@ "parallel/test-buffer-isutf8-isascii-fast.js", "parallel/test-buffer-pending-deprecation.js", "parallel/test-buffer-pool-untransferable.js", - "parallel/test-buffer-resizable.js", "parallel/test-buffer-swap-fast.js", "parallel/test-buffer-tostring-4gb.js", "parallel/test-buffer-write-fast.js", @@ -2232,7 +1972,6 @@ "parallel/test-debugger-watch-validation.js", "parallel/test-debugger-watchers.mjs", "parallel/test-debugger-websocket-secret-mismatch.js", - "parallel/test-dgram-async-dispose.mjs", "parallel/test-dgram-bind-sync.js", "parallel/test-dgram-connect-sync.js", "parallel/test-dgram-default-lookup-ip.js", @@ -2276,7 +2015,6 @@ "parallel/test-directory-import.js", "parallel/test-disable-proto-delete.js", "parallel/test-disable-proto-throw.js", - "parallel/test-disable-sigusr1.js", "parallel/test-dns-channel-timeout.js", "parallel/test-dns-default-order-ipv4.js", "parallel/test-dns-default-order-ipv6.js", @@ -2356,7 +2094,6 @@ "parallel/test-esm-loader-hooks-inspect-wait.js", "parallel/test-eval-disallow-code-generation-from-strings.js", "parallel/test-eventemitter-asyncresource.js", - "parallel/test-events-add-abort-listener.mjs", "parallel/test-events-customevent.js", "parallel/test-events-getmaxlisteners.js", "parallel/test-events-on-async-iterator.js", @@ -2368,9 +2105,7 @@ "parallel/test-experimental-shared-value-conveyor.js", "parallel/test-fastutf8stream-full-write-utf8.js", "parallel/test-fastutf8stream-write-buffer.js", - "parallel/test-fetch-mock.js", "parallel/test-ffi-missing-build.js", - "parallel/test-file-write-stream5.js", "parallel/test-file.js", "parallel/test-find-package-json.js", "parallel/test-fixed-queue.js", @@ -2387,11 +2122,9 @@ "parallel/test-fs-fchmod.js", "parallel/test-fs-fchown.js", "parallel/test-fs-filehandle.js", - "parallel/test-fs-glob.mjs", "parallel/test-fs-mkdir.js", "parallel/test-fs-mkdtemp.js", "parallel/test-fs-open-flags.js", - "parallel/test-fs-operations-with-surrogate-pairs.js", "parallel/test-fs-promises-appendfile.js", "parallel/test-fs-promises-file-handle-aggregate-errors.js", "parallel/test-fs-promises-file-handle-append-file.js", @@ -2408,15 +2141,12 @@ "parallel/test-fs-read-type.js", "parallel/test-fs-read.js", "parallel/test-fs-readSync-position-validation.mjs", - "parallel/test-fs-readdir-recursive.js", "parallel/test-fs-readdir-stack-overflow.js", "parallel/test-fs-readdir-types.js", "parallel/test-fs-readfile-buffer-option.js", "parallel/test-fs-readfile-error.js", - "parallel/test-fs-readfile-utf8-fast-path.js", "parallel/test-fs-readfile.js", "parallel/test-fs-rm.js", - "parallel/test-fs-stat-abort-test.js", "parallel/test-fs-stat.js", "parallel/test-fs-sync-fd-leak.js", "parallel/test-fs-truncate.js", @@ -2428,8 +2158,6 @@ "parallel/test-fs-write-file-flush.js", "parallel/test-fs-write-sigxfsz.js", "parallel/test-fs-write-stream-autoclose-option.js", - "parallel/test-fs-write-stream-eagain.mjs", - "parallel/test-fs-write-stream-flush.js", "parallel/test-fs-write.js", "parallel/test-gc-http-client-connaborted.js", "parallel/test-gc-net-timeout.js", @@ -2640,7 +2368,6 @@ "parallel/test-navigator.js", "parallel/test-net-allow-half-open-async-iter.js", "parallel/test-net-boundsocket.js", - "parallel/test-net-connect-custom-lookup-non-string-address.mjs", "parallel/test-net-connect-keepalive.js", "parallel/test-net-connect-memleak.js", "parallel/test-net-connect-options-fd.js", @@ -2652,7 +2379,6 @@ "parallel/test-net-onread-static-buffer.js", "parallel/test-net-persistent-nodelay.js", "parallel/test-net-persistent-ref-unref.js", - "parallel/test-net-server-async-dispose.mjs", "parallel/test-net-server-keepalive.js", "parallel/test-net-server-listen-handle.js", "parallel/test-net-server-transfer-worker.js", @@ -2781,12 +2507,10 @@ "parallel/test-process-hrtime.js", "parallel/test-process-kill-pid.js", "parallel/test-process-load-env-file.js", - "parallel/test-process-ref-unref.js", "parallel/test-process-setgroups.js", "parallel/test-process-uid-gid.js", "parallel/test-process-uncaught-exception-monitor.js", "parallel/test-process-versions.js", - "parallel/test-process-warnings.mjs", "parallel/test-promise-hook-create-hook.js", "parallel/test-promise-hook-exceptions.js", "parallel/test-promise-hook-on-after.js", @@ -2825,11 +2549,8 @@ "parallel/test-quic-writer-write-rejects.mjs", "parallel/test-quotaexceedederror.js", "parallel/test-readline-async-iterators.js", - "parallel/test-repl-completion-on-getters-disabled.js", "parallel/test-repl-custom-eval-previews.js", - "parallel/test-repl-custom-eval.js", "parallel/test-repl-domain.js", - "parallel/test-repl-envvars.js", "parallel/test-repl-harmony.js", "parallel/test-repl-history-navigation.js", "parallel/test-repl-import-referrer.js", @@ -2846,12 +2567,8 @@ "parallel/test-repl-sigint-nested-eval.js", "parallel/test-repl-sigint.js", "parallel/test-repl-strict-mode-previews.js", - "parallel/test-repl-tab-complete-computed-props.js", "parallel/test-repl-tab-complete-import.js", - "parallel/test-repl-tab-complete-new-expression.js", - "parallel/test-repl-tab-complete-nosideeffects.js", "parallel/test-repl-tab-complete-require.js", - "parallel/test-repl-tab-complete-unary-expressions.js", "parallel/test-repl-tab-complete.js", "parallel/test-repl-top-level-await.js", "parallel/test-repl-uncaught-exception-async.js", @@ -2866,7 +2583,6 @@ "parallel/test-require-mjs.js", "parallel/test-require-package-map.js", "parallel/test-require-resolve.js", - "parallel/test-runner-aftereach-runtime-skip.js", "parallel/test-runner-assert.js", "parallel/test-runner-cli-concurrency.js", "parallel/test-runner-cli-randomize.js", @@ -2879,7 +2595,6 @@ "parallel/test-runner-coverage-source-map.js", "parallel/test-runner-coverage-thresholds.js", "parallel/test-runner-coverage.js", - "parallel/test-runner-custom-assertions.js", "parallel/test-runner-diagnostics-channel.js", "parallel/test-runner-enable-source-maps-issue.js", "parallel/test-runner-enqueue-file-syntax-error.js", @@ -2888,21 +2603,16 @@ "parallel/test-runner-execution-ordered-bypass.mjs", "parallel/test-runner-exit-code.js", "parallel/test-runner-extraneous-async-activity.js", - "parallel/test-runner-filter-warning.js", "parallel/test-runner-flag-propagation.js", "parallel/test-runner-force-exit-failure.js", "parallel/test-runner-force-exit-flush.js", - "parallel/test-runner-get-test-context.js", "parallel/test-runner-global-setup-teardown.mjs", "parallel/test-runner-global-setup-watch-mode.mjs", "parallel/test-runner-import-no-scheme.js", "parallel/test-runner-inspect.mjs", "parallel/test-runner-log.mjs", "parallel/test-runner-misc.js", - "parallel/test-runner-mock-timers-date.js", - "parallel/test-runner-mock-timers-scheduler.js", "parallel/test-runner-mock-timers-with-timeout.js", - "parallel/test-runner-mock-timers.js", "parallel/test-runner-mocking.js", "parallel/test-runner-module-mocking.js", "parallel/test-runner-no-isolation-different-cwd.mjs", @@ -2910,11 +2620,9 @@ "parallel/test-runner-no-isolation-hooks.mjs", "parallel/test-runner-no-isolation.mjs", "parallel/test-runner-option-precedence.js", - "parallel/test-runner-option-validation.js", "parallel/test-runner-plan.mjs", "parallel/test-runner-randomize-first-draw.mjs", "parallel/test-runner-reporters.js", - "parallel/test-runner-root-after-with-refed-handles.js", "parallel/test-runner-root-duration.js", "parallel/test-runner-run-coverage.mjs", "parallel/test-runner-run-files-undefined.mjs", @@ -2923,22 +2631,13 @@ "parallel/test-runner-seeded-generator.js", "parallel/test-runner-snapshot-file-tests.js", "parallel/test-runner-snapshot-tests.js", - "parallel/test-runner-source-maps-invalid-json.js", "parallel/test-runner-string-to-regexp.js", - "parallel/test-runner-subtest-after-hook.js", "parallel/test-runner-tag-filter-cli.mjs", "parallel/test-runner-tags-events.mjs", - "parallel/test-runner-tags-experimental-warning.mjs", - "parallel/test-runner-tags-inheritance.mjs", - "parallel/test-runner-tags-validation.mjs", - "parallel/test-runner-test-filepath.js", - "parallel/test-runner-test-fullname.js", "parallel/test-runner-test-id.js", "parallel/test-runner-test-rerun-failures.js", "parallel/test-runner-todo-suite-hook-failure.js", - "parallel/test-runner-typechecking.js", "parallel/test-runner-v8-deserializer.mjs", - "parallel/test-runner-wait-for.js", "parallel/test-runner-watch-mode-complex.mjs", "parallel/test-runner-worker-id.js", "parallel/test-runner-xfail.js", @@ -2984,23 +2683,12 @@ "parallel/test-source-map-api.js", "parallel/test-source-map-cjs-require-cache.js", "parallel/test-source-map-enable.js", - "parallel/test-sqlite-aggregate-function.mjs", - "parallel/test-sqlite-authz.js", "parallel/test-sqlite-backup.mjs", "parallel/test-sqlite-config.js", - "parallel/test-sqlite-custom-functions.js", - "parallel/test-sqlite-data-types.js", - "parallel/test-sqlite-database-sync.js", - "parallel/test-sqlite-limits.js", - "parallel/test-sqlite-named-parameters.js", - "parallel/test-sqlite-serialize.js", "parallel/test-sqlite-session.js", - "parallel/test-sqlite-statement-sync-columns.js", "parallel/test-sqlite-statement-sync.js", "parallel/test-sqlite-template-tag.js", "parallel/test-sqlite-timeout.js", - "parallel/test-sqlite-transactions.js", - "parallel/test-sqlite-typed-array-and-data-view.js", "parallel/test-sqlite.js", "parallel/test-stack-size-limit.js", "parallel/test-startup-empty-regexp-statics.js", @@ -3062,7 +2750,6 @@ "parallel/test-timers-now.js", "parallel/test-timers-ordering.js", "parallel/test-timers-promises-scheduler.js", - "parallel/test-timers-promises.js", "parallel/test-timers-refresh.js", "parallel/test-timers-reset-process-domain-on-throw.js", "parallel/test-timers-timeout-promisified.js", @@ -3072,7 +2759,6 @@ "parallel/test-tls-certificate-compression.js", "parallel/test-tls-check-server-identity.js", "parallel/test-tls-cipher-list.js", - "parallel/test-tls-client-allow-partial-trust-chain.js", "parallel/test-tls-client-auth.js", "parallel/test-tls-client-default-ciphers.js", "parallel/test-tls-client-mindhsize.js", @@ -3109,18 +2795,11 @@ "parallel/test-tls-wrap-timeout.js", "parallel/test-tls-writewrap-leak.js", "parallel/test-tojson-perf_hooks.js", - "parallel/test-trace-events-get-category-enabled-buffer.js", "parallel/test-tty-backwards-api.js", "parallel/test-ttywrap-invalid-fd.js", "parallel/test-unhandled-exception-rethrow-error.js", "parallel/test-unicode-node-options.js", - "parallel/test-url-domain-ascii-unicode.js", - "parallel/test-url-fileurltopath.js", - "parallel/test-url-format-invalid-input.js", - "parallel/test-url-format-whatwg.js", - "parallel/test-url-format.js", "parallel/test-url-is-url-internal.js", - "parallel/test-url-parse-format.js", "parallel/test-url-parse-invalid-input.js", "parallel/test-url-urltooptions.js", "parallel/test-urlpattern-invalidthis.js", @@ -3135,15 +2814,11 @@ "parallel/test-util-inspect-proxy.js", "parallel/test-util-inspect.js", "parallel/test-util-internal.js", - "parallel/test-util-isDeepStrictEqual.js", "parallel/test-util-parse-env.js", "parallel/test-util-promisify-custom-names.mjs", "parallel/test-util-promisify.js", "parallel/test-util-sigint-watchdog.js", "parallel/test-util-sleep.js", - "parallel/test-util-stripvtcontrolcharacters.js", - "parallel/test-util-styletext-hex.js", - "parallel/test-util-text-decoder.js", "parallel/test-util-types.js", "parallel/test-util.js", "parallel/test-uv-binding-constant.js", @@ -3266,11 +2941,6 @@ "parallel/test-vm-global-non-writable-properties.js", "parallel/test-vm-global-property-interceptors.js", "parallel/test-vm-global-setter.js", - "parallel/test-vm-module-hasasyncgraph.js", - "parallel/test-vm-module-hastoplevelawait.js", - "parallel/test-vm-module-instantiate.js", - "parallel/test-vm-module-linkmodulerequests-circular.js", - "parallel/test-vm-module-linkmodulerequests-deep.js", "parallel/test-vm-module-linkmodulerequests.js", "parallel/test-vm-module-modulerequests.js", "parallel/test-vm-proxy-sandbox-property-query.js", @@ -3308,19 +2978,13 @@ "parallel/test-webstream-readablestream-pipeto.js", "parallel/test-webstream-structured-clone-no-leftovers.mjs", "parallel/test-webstreams-adapters-sync-write-error.js", - "parallel/test-webstreams-adapters-writable-buffer-sources.js", "parallel/test-webstreams-clone-unref.js", - "parallel/test-webstreams-compression-bad-chunks.js", - "parallel/test-webstreams-compression-buffer-source.js", - "parallel/test-webstreams-decompression-reject-trailing.js", "parallel/test-webstreams-pipeto-write-request.js", "parallel/test-whatwg-encoding-custom-internals.js", "parallel/test-whatwg-encoding-custom-interop.js", "parallel/test-whatwg-encoding-custom-textdecoder.js", - "parallel/test-whatwg-encoding-singlebyte.mjs", "parallel/test-whatwg-readablebytestream.js", "parallel/test-whatwg-readablestream.js", - "parallel/test-whatwg-transformstream-cancel-write-race.js", "parallel/test-whatwg-transformstream.js", "parallel/test-whatwg-url-canparse.js", "parallel/test-whatwg-url-custom-properties.js", @@ -3350,10 +3014,8 @@ "parallel/test-whatwg-webstreams-coverage.js", "parallel/test-whatwg-webstreams-encoding.js", "parallel/test-whatwg-webstreams-transfer.js", - "parallel/test-whatwg-writablestream-close.js", "parallel/test-whatwg-writablestream.js", "parallel/test-worker-abort-on-uncaught-exception-terminate.js", - "parallel/test-worker-arraybuffer-zerofill.js", "parallel/test-worker-broadcastchannel-wpt.js", "parallel/test-worker-broadcastchannel.js", "parallel/test-worker-cli-options.js", @@ -3394,15 +3056,12 @@ "parallel/test-x509-escaping.js", "parallel/test-zlib-brotli-flush-invalid-kind.js", "parallel/test-zlib-brotli-kmaxlength-rangeerror.js", - "parallel/test-zlib-flush.js", "parallel/test-zlib-invalid-input-memory.js", "parallel/test-zlib-not-string-or-buffer.js", "parallel/test-zlib-reject-garbage-after-end.js", "parallel/test-zlib-truncated.js", "parallel/test-zlib-type-error.js", "parallel/test-zlib-unused-weak.js", - "parallel/test-zlib-write-after-end.js", - "parallel/test-zlib-zero-windowBits.js", "parallel/test-zlib-zstd-dictionary.js", "parallel/test-zlib-zstd-pledged-src-size.js", "parallel/test-zlib.js", @@ -3472,7 +3131,6 @@ "sequential/test-async-wrap-getasyncid.js", "sequential/test-buffer-creation-regression.js", "sequential/test-child-process-execsync.js", - "sequential/test-cli-syntax-bad.js", "sequential/test-cli-syntax-file-not-found.js", "sequential/test-cli-syntax-good.js", "sequential/test-cli-syntax-require.js", @@ -3509,7 +3167,6 @@ "sequential/test-runner-run-inspect.mjs", "sequential/test-timers-block-eventloop.js", "sequential/test-timers-set-interval-excludes-callback-duration.js", - "sequential/test-tls-connect.js", "sequential/test-util-debug.js", "sequential/test-watch-mode-inspect.mjs", "sequential/test-watch-mode-restart-esm-loading-error.mjs", @@ -3679,6 +3336,250 @@ "wpt/test-webidl.js", "wpt/test-webstorage.js" ], + "node": [ + "async-hooks/test-graph.signal.js", + "es-module/test-esm-detect-ambiguous.mjs", + "es-module/test-esm-import-meta-main-eval.mjs", + "internet/test-corepack-yarn-install.js", + "internet/test-dgram-multicast-ssmv6-multi-process.js", + "internet/test-net-autoselectfamily-events-failure.js", + "internet/test-net-autoselectfamily-timeout-close.js", + "message/test-testpy-env-var-via-comment.js", + "parallel/test-cli-options-as-flags.js", + "parallel/test-cluster-dgram-1.js", + "parallel/test-common.js", + "parallel/test-config-file.js", + "parallel/test-dns-channel-timeout.js", + "parallel/test-dotenv-node-options.js", + "parallel/test-node-output-console.mjs", + "parallel/test-node-run.js", + "parallel/test-parse-test-envs.js", + "parallel/test-parse-test-only-envs.js", + "parallel/test-permission-audit-child-process-inherit-flags.js", + "parallel/test-permission-child-process-inherit-flags-substring.js", + "parallel/test-permission-child-process-inherit-flags.js", + "parallel/test-process-getactiveresources-track-active-requests.js", + "parallel/test-process-getactiveresources.js", + "parallel/test-runner-execution-ordered-bypass.mjs", + "parallel/test-runner-reporters.js", + "parallel/test-shadow-realm-gc-module.js", + "parallel/test-shadow-realm-gc.js", + "parallel/test-snapshot-incompatible.js", + "parallel/test-sqlite-backup.mjs", + "parallel/test-testpy-env-var-via-comment.js", + "parallel/test-zlib-brotli-kmaxlength-rangeerror.js", + "sequential/test-util-debug.js", + "system-ca/test-native-intermediate-certs.mjs", + "system-ca/test-native-root-certs-env.mjs", + "system-ca/test-native-root-certs.mjs", + "system-ca/test-set-default-ca-certificates-append-system-ca.mjs", + "system-ca/test-use-system-ca-worker-disable.mjs", + "system-ca/test-use-system-ca-worker-enable.mjs", + "test-runner/test-output-arbitrary-output-colored.mjs", + "test-runner/test-output-coverage-with-mock.mjs", + "test-runner/test-output-junit-reporter.mjs", + "test-runner/test-output-lcov-reporter.mjs", + "test-runner/test-output-non-tty-forced-color-output.mjs", + "test-runner/test-output-output.mjs", + "test-runner/test-output-spec-reporter.mjs", + "test-runner/test-watch-create-isolation-none.mjs", + "wasm-allocation/test-wasm-allocation-memory64.js", + "wasm-allocation/test-wasm-allocation.js" + ], + "nub": [ + "async-hooks/test-graph.signal.js", + "es-module/test-cjs-legacyMainResolve-permission.js", + "es-module/test-esm-detect-ambiguous.mjs", + "es-module/test-esm-import-assertion-warning.mjs", + "es-module/test-esm-import-attributes-errors.js", + "es-module/test-esm-import-attributes-errors.mjs", + "es-module/test-esm-import-text-disabled.mjs", + "es-module/test-esm-import-text.mjs", + "es-module/test-esm-module-not-found-commonjs-hint.mjs", + "es-module/test-loaders-hidden-from-users.js", + "es-module/test-require-module-tla-error-snapshot.mjs", + "es-module/test-require-module-warning.js", + "es-module/test-require-node-modules-warning.js", + "es-module/test-typescript-commonjs.mjs", + "es-module/test-typescript.mjs", + "es-module/test-vm-main-context-default-loader-eval.js", + "es-module/test-vm-main-context-default-loader.js", + "ffi/test-ffi-permission-allow-cli.js", + "ffi/test-ffi-permissions.js", + "internet/test-corepack-yarn-install.js", + "internet/test-dgram-multicast-ssmv6-multi-process.js", + "internet/test-net-autoselectfamily-events-failure.js", + "internet/test-net-autoselectfamily-timeout-close.js", + "message/test-testpy-env-var-via-comment.js", + "module-hooks/test-async-loader-hooks-called-with-expected-args.mjs", + "module-hooks/test-async-loader-hooks-called-with-register.mjs", + "module-hooks/test-async-loader-hooks-process-exit-async.mjs", + "module-hooks/test-module-hooks-load-builtin-import.mjs", + "module-hooks/test-module-hooks-load-builtin-override-commonjs.js", + "module-hooks/test-module-hooks-load-builtin-override-json.js", + "module-hooks/test-module-hooks-load-builtin-override-module.js", + "module-hooks/test-module-hooks-load-builtin-require.js", + "module-hooks/test-module-hooks-resolve-builtin-builtin-import.mjs", + "module-hooks/test-module-hooks-resolve-builtin-builtin-require.js", + "module-hooks/test-module-hooks-resolve-builtin-on-disk-import.mjs", + "module-hooks/test-module-hooks-resolve-builtin-on-disk-require-with-prefix.js", + "module-hooks/test-module-hooks-resolve-builtin-on-disk-require.js", + "module-hooks/test-module-hooks-resolve-load-builtin-override-both-prefix.js", + "module-hooks/test-module-hooks-resolve-load-builtin-override-both.js", + "module-hooks/test-module-hooks-resolve-load-builtin-redirect-prefix.js", + "module-hooks/test-module-hooks-resolve-load-builtin-redirect.js", + "parallel/test-bootstrap-modules.js", + "parallel/test-cli-options-as-flags.js", + "parallel/test-cli-permission-deny-fs.js", + "parallel/test-cli-permission-multiple-allow.js", + "parallel/test-cluster-dgram-1.js", + "parallel/test-code-cache.js", + "parallel/test-common.js", + "parallel/test-compile-cache-api-options-portable-env.js", + "parallel/test-compile-cache-api-permission.js", + "parallel/test-compile-cache-api-portable.js", + "parallel/test-compile-cache-permission-allowed.js", + "parallel/test-compile-cache-permission-disallowed.js", + "parallel/test-compile-cache-typescript-commonjs.js", + "parallel/test-compile-cache-typescript-esm.js", + "parallel/test-compile-cache-typescript-strip-sourcemaps.js", + "parallel/test-config-file.js", + "parallel/test-debugger-probe-typescript.js", + "parallel/test-dns-channel-timeout.js", + "parallel/test-dotenv-node-options.js", + "parallel/test-eventsource-disabled.js", + "parallel/test-http-parser-lazy-loaded.js", + "parallel/test-internal-modules.js", + "parallel/test-node-output-console.mjs", + "parallel/test-node-output-errors.mjs", + "parallel/test-node-run.js", + "parallel/test-os-checked-function.js", + "parallel/test-parse-test-envs.js", + "parallel/test-parse-test-only-envs.js", + "parallel/test-permission-allow-child-process-cli.js", + "parallel/test-permission-allow-inspector.js", + "parallel/test-permission-allow-wasi-cli.js", + "parallel/test-permission-allow-worker-cli.js", + "parallel/test-permission-audit-child-process-inherit-flags.js", + "parallel/test-permission-child-process-cli.js", + "parallel/test-permission-child-process-inherit-flags-substring.js", + "parallel/test-permission-child-process-inherit-flags.js", + "parallel/test-permission-config-file.mjs", + "parallel/test-permission-diagnostics-channel.js", + "parallel/test-permission-drop-child-process.js", + "parallel/test-permission-drop-diagnostics-channel.js", + "parallel/test-permission-drop-errors.js", + "parallel/test-permission-drop-ffi.js", + "parallel/test-permission-drop-fs-all.js", + "parallel/test-permission-drop-fs-granted-path.js", + "parallel/test-permission-drop-fs-read.js", + "parallel/test-permission-drop-fs-scope.js", + "parallel/test-permission-drop-fs-specific-path.js", + "parallel/test-permission-drop-fs-write.js", + "parallel/test-permission-drop-net.js", + "parallel/test-permission-drop-worker.js", + "parallel/test-permission-fs-absolute-path.js", + "parallel/test-permission-fs-filehandle-utimes.js", + "parallel/test-permission-fs-internal-module-stat.js", + "parallel/test-permission-fs-read-entrypoint.js", + "parallel/test-permission-fs-read.js", + "parallel/test-permission-fs-relative-path.js", + "parallel/test-permission-fs-repeat-path.js", + "parallel/test-permission-fs-require.js", + "parallel/test-permission-fs-symlink-relative.js", + "parallel/test-permission-fs-symlink-target-write.js", + "parallel/test-permission-fs-symlink.js", + "parallel/test-permission-fs-traversal-path.js", + "parallel/test-permission-fs-wildcard.js", + "parallel/test-permission-fs-windows-path.js", + "parallel/test-permission-fs-write-v8.js", + "parallel/test-permission-fs-write.js", + "parallel/test-permission-has.js", + "parallel/test-permission-inspector.js", + "parallel/test-permission-net-allowed.js", + "parallel/test-permission-net-dns.js", + "parallel/test-permission-net-quic.mjs", + "parallel/test-permission-net-udp.js", + "parallel/test-permission-net-uds.js", + "parallel/test-permission-net-warning.js", + "parallel/test-permission-net-websocket.js", + "parallel/test-permission-no-addons.js", + "parallel/test-permission-openssl-store.js", + "parallel/test-permission-sqlite-load-extension.js", + "parallel/test-permission-warning-flags.js", + "parallel/test-permission-wasi.js", + "parallel/test-permission-worker-threads-cli.js", + "parallel/test-process-execve-permission-fail.js", + "parallel/test-process-execve-permission-granted.js", + "parallel/test-process-getactiveresources-track-active-requests.js", + "parallel/test-process-getactiveresources.js", + "parallel/test-process-load-env-file.js", + "parallel/test-process-versions.js", + "parallel/test-repl-permission-model.js", + "parallel/test-repl.js", + "parallel/test-runner-coverage-default-exclusion.mjs", + "parallel/test-runner-coverage-source-map.js", + "parallel/test-runner-coverage-thresholds.js", + "parallel/test-runner-coverage.js", + "parallel/test-runner-execution-ordered-bypass.mjs", + "parallel/test-runner-flag-propagation.js", + "parallel/test-runner-reporters.js", + "parallel/test-shadow-realm-gc-module.js", + "parallel/test-shadow-realm-gc.js", + "parallel/test-snapshot-incompatible.js", + "parallel/test-sqlite-backup.mjs", + "parallel/test-testpy-env-var-via-comment.js", + "parallel/test-tls-clientcertengine-unsupported.js", + "parallel/test-tls-keyengine-unsupported.js", + "parallel/test-util-inspect.js", + "parallel/test-v8-coverage.js", + "parallel/test-vm-cached-data.js", + "parallel/test-vm-dynamic-import-callback-missing-flag.js", + "parallel/test-zlib-brotli-kmaxlength-rangeerror.js", + "parallel/test-zlib-kmaxlength-rangeerror.js", + "parallel/test-zlib-zstd-kmaxlength-rangeerror.js", + "pseudo-tty/test-fatal-error.js", + "pseudo-tty/test-start-trace-sigint.js", + "pseudo-tty/test-trace-sigint.js", + "report/test-report-fatalerror-oomerror-compact.js", + "report/test-report-fatalerror-oomerror-directory.js", + "report/test-report-fatalerror-oomerror-filename.js", + "report/test-report-fatalerror-oomerror-set.js", + "report/test-report-getreport.js", + "report/test-report-signal.js", + "report/test-report-uncaught-exception-compat.js", + "report/test-report-uncaught-exception-primitives.js", + "report/test-report-uncaught-exception-symbols.js", + "report/test-report-uncaught-exception.js", + "report/test-report-uv-handles.js", + "report/test-report-worker.js", + "report/test-report-writereport-exclude-env.js", + "report/test-report-writereport.js", + "sequential/test-util-debug.js", + "system-ca/test-native-intermediate-certs.mjs", + "system-ca/test-native-root-certs-env.mjs", + "system-ca/test-native-root-certs.mjs", + "system-ca/test-set-default-ca-certificates-append-system-ca.mjs", + "system-ca/test-use-system-ca-worker-disable.mjs", + "system-ca/test-use-system-ca-worker-enable.mjs", + "test-runner/test-output-abort-suite.mjs", + "test-runner/test-output-abort.mjs", + "test-runner/test-output-arbitrary-output-colored.mjs", + "test-runner/test-output-coverage-width-100-uncovered-lines.mjs", + "test-runner/test-output-coverage-width-150-uncovered-lines.mjs", + "test-runner/test-output-coverage-width-80-uncovered-lines.mjs", + "test-runner/test-output-coverage-width-infinity-uncovered-lines.mjs", + "test-runner/test-output-coverage-with-mock.mjs", + "test-runner/test-output-junit-reporter.mjs", + "test-runner/test-output-non-tty-forced-color-output.mjs", + "test-runner/test-output-output.mjs", + "test-runner/test-output-spec-reporter.mjs", + "test-runner/test-output-typescript-coverage.mjs", + "test-runner/test-watch-create-isolation-none.mjs", + "wasm-allocation/test-wasm-allocation-memory64.js", + "wasm-allocation/test-wasm-allocation.js", + "wpt/test-webidl.js" + ], "deno": [ "abort/test-abort-fatal-error.js", "abort/test-http-parser-consume.js", @@ -7962,7 +7863,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " \"ERR_ASSERTION\"\n\n at /test/abort/test-abort-fatal-error.js:42:3\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ed: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-abort-fatal-error.js:42:3\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -7993,7 +7894,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-abort-uncaught-exception.js:35:7\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ertionError: Unexpected signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-abort-uncaught-exception.js:35:7\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8022,7 +7923,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " property must be of type string, got undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/addons/register-signal-handler/test.js:12:26)\n at (/test/abort/test-addon-register-signal-handler.js:6:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "require('child_process');\n11 | \n12 | const bindingPath = path.resolve(\n ^\nTypeError: The \"paths[2]\" property must be of type string, got undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/addons/register-signal-handler/test.js:12:26)\n at (/test/abort/test-addon-register-signal-handler.js:6:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8078,7 +7979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-http-parser-consume.js:29:5\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "e:net:633:72)\n\nBun v1.4.0 (macOS arm64)\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-http-parser-consume.js:29:5\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8167,7 +8068,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-worker-abort-uncaught-exception.js:21:5\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rror: Unexpected signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-worker-abort-uncaught-exception.js:21:5\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8196,7 +8097,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "toString(), '');\n16 | assert.ok(child.stderr.includes(\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-zlib-invalid-internals-usage.js:16:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "name}`, 'child']);\n14 | \n15 | assert.strictEqual(child.stdout.toString(), '');\n16 | assert.ok(child.stderr.includes(\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/abort/test-zlib-invalid-internals-usage.js:16:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8254,7 +8155,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " start: undefined\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-exec-resource-http-32060.js:26:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " (anonymous)],\n+ resume: [Function (anonymous)],\n+ start: undefined\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-exec-resource-http-32060.js:26:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8285,7 +8186,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tion (anonymous)],\n+ start: undefined\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-exec-resource-http-agent.js:29:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", + "tail": "\n+ read: [Function (anonymous)],\n+ resume: [Function (anonymous)],\n+ start: undefined\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-exec-resource-http-agent.js:29:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", "retried": true }, "deno": { @@ -8316,7 +8217,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " [Function (anonymous)],\n+ start: undefined\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-exec-resource-http.js:24:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", + "tail": "nction (anonymous)],\n+ resume: [Function (anonymous)],\n+ start: undefined\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-exec-resource-http.js:24:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8347,7 +8248,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tRes === res, 'resource mismatch in init');\n ^\nAssertionError: resource mismatch in init\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-async-exec-resource-match.js:56:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " const initRes = idResMap.get(res.asyncId());\n56 | assert.ok(initRes === res, 'resource mismatch in init');\n ^\nAssertionError: resource mismatch in init\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-async-exec-resource-match.js:56:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8515,7 +8416,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "efined);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ {\n+ foo: 'bar'\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-local-storage-enter-with.js:19:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "=> {\n19 | assert.strictEqual(asyncLocalStorage.getStore(), undefined);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ {\n+ foo: 'bar'\n+ }\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/async-hooks/test-async-local-storage-enter-with.js:19:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8544,7 +8445,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": "t.fail('unknown error ' + err);\n ^\nAssertionError: unknown error AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- {\n- awaitToken: true\n- }\n\n at fail (node:assert:77:12)\n at (/test/async-hooks/test-async-local-storage-errors.js:37:12)", + "tail": "lStorage.getStore(), awaitToken);\n36 | } else {\n37 | assert.fail('unknown error ' + err);\n ^\nAssertionError: unknown error AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- {\n- awaitToken: true\n- }\n\n at fail (node:assert:77:12)\n at (/test/async-hooks/test-async-local-storage-errors.js:37:12)", "retried": true }, "deno": { @@ -8575,7 +8476,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "syncLocalStore instance.\n23 | asyncLocalStorage.disable();\n24 | }\n25 | \n26 | asyncLocalStorage = null;\n27 | global.gc();\n ^\nTypeError: global.gc is not a function. (In 'global.gc()', 'global.gc' is undefined)\n at (/test/async-hooks/test-async-local-storage-gcable.js:27:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "22 | // created during exit of run() to the AsyncLocalStore instance.\n23 | asyncLocalStorage.disable();\n24 | }\n25 | \n26 | asyncLocalStorage = null;\n27 | global.gc();\n ^\nTypeError: global.gc is not a function. (In 'global.gc()', 'global.gc' is undefined)\n at (/test/async-hooks/test-async-local-storage-gcable.js:27:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8880,7 +8781,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ernalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/async-hooks/test-async-wrap-providers.js:6:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/async-hooks/test-async-wrap-providers.js:6:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8911,7 +8812,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "es to be strictly equal:\n+ actual - expected\n\n+ ''\n- 'Error: test_init_callback'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"Error: test_init_callback\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-callback-error.js:43:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "t_init_callback');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ ''\n- 'Error: test_init_callback'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"Error: test_init_callback\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-callback-error.js:43:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8942,7 +8843,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| \n37 | const as = hooks.activitiesOfTypes('PBKDF2REQUEST');\n38 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-crypto-pbkdf2.js:38:10)", + "tail": " hooks.disable();\n35 | hooks.sanityCheck('PBKDF2REQUEST');\n36 | \n37 | const as = hooks.activitiesOfTypes('PBKDF2REQUEST');\n38 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-crypto-pbkdf2.js:38:10)", "retried": true }, "deno": { @@ -8973,7 +8874,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "const as = hooks.activitiesOfTypes('RANDOMBYTESREQUEST');\n39 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-crypto-randomBytes.js:39:10)", + "tail": ");\n36 | hooks.sanityCheck('RANDOMBYTESREQUEST');\n37 | \n38 | const as = hooks.activitiesOfTypes('RANDOMBYTESREQUEST');\n39 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-crypto-randomBytes.js:39:10)", "retried": true }, "deno": { @@ -9004,7 +8905,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testNextTick (/test/async-hooks/test-destroy-not-blocked.js:32:10)\n at /test/async-hooks/test-destroy-not-blocked.js:93:1\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n ^\nAssertionError: Expected values to be strictly equal:\n\n-1 !== 0\n\n generatedMessage: true,\n actual: -1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testNextTick (/test/async-hooks/test-destroy-not-blocked.js:32:10)\n at /test/async-hooks/test-destroy-not-blocked.js:93:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -9035,7 +8936,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "anonymous> function calls. Expected exactly 2, actual 0.\n at (/test/async-hooks/test-disable-in-init.js:10:16)\nMismatched noop function calls. Expected exactly 2, actual 0.\n at (/test/async-hooks/test-disable-in-init.js:20:16)", + "tail": "Mismatched function calls. Expected exactly 2, actual 0.\n at (/test/async-hooks/test-disable-in-init.js:10:16)\nMismatched noop function calls. Expected exactly 2, actual 0.\n at (/test/async-hooks/test-disable-in-init.js:20:16)", "retried": true }, "deno": { @@ -9095,7 +8996,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "vities.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-embedder.api.async-resource.js:39:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "us only has an `init` call\n39 | assert.strictEqual(alcazaresActivities.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-embedder.api.async-resource.js:39:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -9184,7 +9085,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "./init-hooks');\n8 | \n9 | const expectedId = async_hooks.newAsyncId();\n ^\nTypeError: async_hooks.newAsyncId is not a function. (In 'async_hooks.newAsyncId()', 'async_hooks.newAsyncId' is undefined)\n at (/test/async-hooks/test-emit-before-after.js:9:32)\n\nBun v1.4.0 (macOS arm64)", + "tail": "require('internal/async_hooks');\n7 | const initHooks = require('./init-hooks');\n8 | \n9 | const expectedId = async_hooks.newAsyncId();\n ^\nTypeError: async_hooks.newAsyncId is not a function. (In 'async_hooks.newAsyncId()', 'async_hooks.newAsyncId' is undefined)\n at (/test/async-hooks/test-emit-before-after.js:9:32)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -9244,7 +9145,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "equire('./init-hooks');\n8 | \n9 | const expectedId = async_hooks.newAsyncId();\n ^\nTypeError: async_hooks.newAsyncId is not a function. (In 'async_hooks.newAsyncId()', 'async_hooks.newAsyncId' is undefined)\n at (/test/async-hooks/test-emit-init.js:9:32)\n\nBun v1.4.0 (macOS arm64)", + "tail": "hooks = require('internal/async_hooks');\n7 | const initHooks = require('./init-hooks');\n8 | \n9 | const expectedId = async_hooks.newAsyncId();\n ^\nTypeError: async_hooks.newAsyncId is not a function. (In 'async_hooks.newAsyncId()', 'async_hooks.newAsyncId' is undefined)\n at (/test/async-hooks/test-emit-init.js:9:32)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -9335,7 +9236,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "4 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at onExit (/test/async-hooks/test-filehandle-no-reuse.js:56:10)", + "tail": " expected: !0,\n22 | message,\n23 | operator: \"==\",\n24 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at onExit (/test/async-hooks/test-filehandle-no-reuse.js:56:10)", "retried": true }, "deno": { @@ -9366,7 +9267,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n33 | \n34 | const as = hooks.activitiesOfTypes('FSEVENTWRAP');\n35 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-fseventwrap.js:35:10)", + "tail": "31 | hooks.disable();\n32 | hooks.sanityCheck('FSEVENTWRAP');\n33 | \n34 | const as = hooks.activitiesOfTypes('FSEVENTWRAP');\n35 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-fseventwrap.js:35:10)", "retried": true }, "deno": { @@ -9521,7 +9422,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ckObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.fsreq-readFile.js:19:3)", + "tail": "ggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.fsreq-readFile.js:19:3)", "retried": true }, "deno": { @@ -9552,7 +9453,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at (/test/async-hooks/test-graph.http.js:30:3)", + "tail": "t triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at (/test/async-hooks/test-graph.http.js:30:3)", "retried": true }, "deno": { @@ -9583,7 +9484,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.intervals.js:30:3)", + "tail": "t triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.intervals.js:30:3)", "retried": true }, "deno": { @@ -9612,7 +9513,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.pipe.js:25:3)", + "tail": " const triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.pipe.js:25:3)", "retried": true }, "deno": { @@ -9643,7 +9544,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.pipeconnect.js:30:3)", + "tail": "triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.pipeconnect.js:30:3)", "retried": true }, "deno": { @@ -9674,7 +9575,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "runeTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.shutdown.js:35:3)", + "tail": "st triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.shutdown.js:35:3)", "retried": true }, "deno": { @@ -9742,7 +9643,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.statwatcher.js:29:3)", + "tail": "triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.statwatcher.js:29:3)", "retried": true }, "deno": { @@ -9804,7 +9705,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "runeTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.timeouts.js:26:3)", + "tail": "st triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.timeouts.js:26:3)", "retried": true }, "deno": { @@ -9833,7 +9734,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.tls-write.js:58:3)", + "tail": "t triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.tls-write.js:58:3)", "retried": true }, "deno": { @@ -9864,7 +9765,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.tls-write.js:58:3)", + "tail": "t triggerId = {\n43 | new: tickObject.data.triggerAsyncId,\n ^\nTypeError: undefined is not an object (evaluating 'tickObject.data.triggerAsyncId')\n at pruneTickObjects (/test/async-hooks/verify-graph.js:43:25)\n at verifyGraph (/test/async-hooks/verify-graph.js:67:22)\n at onexit (/test/async-hooks/test-graph.tls-write.js:58:3)", "retried": true }, "deno": { @@ -9895,7 +9796,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onExit (/test/async-hooks/test-http-agent-handle-reuse-parallel.js:82:3)", + "tail": " ^\nAssertionError: Checking invocations at stage \"when process exits\":\n Trying to check invocation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onExit (/test/async-hooks/test-http-agent-handle-reuse-parallel.js:82:3)", "retried": true }, "deno": { @@ -9924,7 +9825,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onExit (/test/async-hooks/test-http-agent-handle-reuse-serial.js:100:3)", + "tail": " ^\nAssertionError: Checking invocations at stage \"when process exits\":\n Trying to check invocation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onExit (/test/async-hooks/test-http-agent-handle-reuse-serial.js:100:3)", "retried": true }, "deno": { @@ -9986,7 +9887,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-httpparser.request.js:27:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "OMINGMESSAGE');\n25 | const httpparser = as[0];\n26 | \n27 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-httpparser.request.js:27:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10017,7 +9918,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-httpparser.response.js:32:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "IENTREQUEST');\n30 | const httpparser = as[0];\n31 | \n32 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-httpparser.response.js:32:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10048,7 +9949,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-immediate.js:16:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n14 | \n15 | const as = hooks.activitiesOfTypes('Immediate');\n16 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-immediate.js:16:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10141,7 +10042,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "p function calls. Expected exactly 3, actual 0.\n at (/test/async-hooks/test-late-hook-enable.js:36:17)\nMismatched function calls. Expected exactly 3, actual 0.\n at (/test/async-hooks/test-late-hook-enable.js:37:19)", + "tail": "alls. Expected exactly 1, actual 0.\n at (/test/async-hooks/test-late-hook-enable.js:19:11)\nMismatched noop function calls. Expected exactly 3, actual 0.\n at (/test/async-hooks/test-late-hook-enable.js:36:17)\nMismatched function calls. Expected exactly 3, actual 0.\n at (/test/async-hooks/test-late-hook-enable.js:37:19)", "retried": true }, "deno": { @@ -10228,7 +10129,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Ids and invalid type name\n12 | async_hooks.emitInit(-1, null, -1, {});\n ^\nTypeError: async_hooks.emitInit is not a function. (In 'async_hooks.emitInit(-1, null, -1, {})', 'async_hooks.emitInit' is undefined)\n at (/test/async-hooks/test-no-assert-when-disabled.js:12:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": " = require('internal/async_hooks');\n10 | \n11 | // Negative asyncIds and invalid type name\n12 | async_hooks.emitInit(-1, null, -1, {});\n ^\nTypeError: async_hooks.emitInit is not a function. (In 'async_hooks.emitInit(-1, null, -1, {})', 'async_hooks.emitInit' is undefined)\n at (/test/async-hooks/test-no-assert-when-disabled.js:12:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10257,7 +10158,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onexit (/test/async-hooks/test-pipeconnectwrap.js:87:3)", + "tail": " ^\nAssertionError: Checking invocations at stage \"pipeserver, process exiting\":\n Trying to check invocation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onexit (/test/async-hooks/test-pipeconnectwrap.js:87:3)", "retried": true }, "deno": { @@ -10319,7 +10220,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sert.strictEqual(as.length, 0);\n37 | assert.strictEqual(unknown.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-promise.chain-promise-before-init-hooks.js:37:10)", + "tail": " const unknown = hooks.activitiesOfTypes('Unknown');\n36 | assert.strictEqual(as.length, 0);\n37 | assert.strictEqual(unknown.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-promise.chain-promise-before-init-hooks.js:37:10)", "retried": true }, "deno": { @@ -10381,7 +10282,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al(as.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n generatedMessage: true,\n actual: 0,\n expected: 2,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at afterResolution (/test/async-hooks/test-promise.promise-before-init-hooks.js:19:10)", + "tail": "as = hooks.activitiesOfTypes('PROMISE');\n19 | assert.strictEqual(as.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n generatedMessage: true,\n actual: 0,\n expected: 2,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at afterResolution (/test/async-hooks/test-promise.promise-before-init-hooks.js:19:10)", "retried": true }, "deno": { @@ -10412,7 +10313,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "P');\n30 | \n31 | const as = hooks.activitiesOfTypes('QUERYWRAP');\n32 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-querywrap.js:32:10)", + "tail": "t() {\n28 | hooks.disable();\n29 | hooks.sanityCheck('QUERYWRAP');\n30 | \n31 | const as = hooks.activitiesOfTypes('QUERYWRAP');\n32 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at onexit (/test/async-hooks/test-querywrap.js:32:10)", "retried": true }, "deno": { @@ -10443,7 +10344,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "n activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at (/test/async-hooks/test-queue-microtask.js:22:3)", + "tail": " ^\nAssertionError: Checking invocations at stage \"when process exits\":\n Trying to check invocation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at (/test/async-hooks/test-queue-microtask.js:22:3)", "retried": true }, "deno": { @@ -10474,7 +10375,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ";\n55 | hooks.sanityCheck('SHUTDOWNWRAP');\n56 | const as = hooks.activitiesOfTypes('SHUTDOWNWRAP');\n57 | const a = as[0];\n58 | assert.strictEqual(a.type, 'SHUTDOWNWRAP');\n ^\nTypeError: undefined is not an object (evaluating 'a.type')\n at onexit (/test/async-hooks/test-shutdownwrap.js:58:22)", + "tail": "ns (native:7:39)\n53 | function onexit() {\n54 | hooks.disable();\n55 | hooks.sanityCheck('SHUTDOWNWRAP');\n56 | const as = hooks.activitiesOfTypes('SHUTDOWNWRAP');\n57 | const a = as[0];\n58 | assert.strictEqual(a.type, 'SHUTDOWNWRAP');\n ^\nTypeError: undefined is not an object (evaluating 'a.type')\n at onexit (/test/async-hooks/test-shutdownwrap.js:58:22)", "retried": true }, "deno": { @@ -10505,7 +10406,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-signalwrap.js:27:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "25 | \n26 | const as = hooks.activitiesOfTypes('SIGNALWRAP');\n27 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-signalwrap.js:27:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10536,7 +10437,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-statwatcher.js:41:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "1'));\n40 | let as = hooks.activitiesOfTypes('STATWATCHER');\n41 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-statwatcher.js:41:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10598,7 +10499,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-timers.setInterval.js:14:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n13 | const as = hooks.activitiesOfTypes('Timeout');\n14 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-timers.setInterval.js:14:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10629,7 +10530,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-timers.setTimeout.js:16:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n15 | const as = hooks.activitiesOfTypes('Timeout');\n16 | assert.strictEqual(as.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-timers.setTimeout.js:16:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10658,7 +10559,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onexit (/test/async-hooks/test-tlswrap.js:135:3)", + "tail": " ^\nAssertionError: Checking invocations at stage \"server: when process exits\":\n Trying to check invocation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onexit (/test/async-hooks/test-tlswrap.js:135:3)", "retried": true }, "deno": { @@ -10689,7 +10590,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rictly equal:\n+ actual - expected\n\n+ undefined\n- Promise {\n- 1729\n- }\n\n generatedMessage: true,\n actual: undefined,\n expected: Promise { },\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-track-promises-default.js:16:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "promise);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- Promise {\n- 1729\n- }\n\n generatedMessage: true,\n actual: undefined,\n expected: Promise { },\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-track-promises-default.js:16:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10720,7 +10621,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "inding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/async-hooks/test-track-promises-false-check.js:7:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/async-hooks/test-track-promises-false-check.js:7:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10778,7 +10679,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " strictly equal:\n+ actual - expected\n\n+ undefined\n- Promise {\n- 1729\n- }\n\n generatedMessage: true,\n actual: undefined,\n expected: Promise { },\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-track-promises-true.js:17:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "s, promise);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- Promise {\n- 1729\n- }\n\n generatedMessage: true,\n actual: undefined,\n expected: Promise { },\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-track-promises-true.js:17:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10809,7 +10710,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": Missing expected exception: trackPromises: 0 should throw\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-track-promises-validation.js:10:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " 'test']) {\n10 | assert.throws(\n ^\nAssertionError: Missing expected exception: trackPromises: 0 should throw\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/async-hooks/test-track-promises-validation.js:10:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -10867,7 +10768,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ion for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onexit (/test/async-hooks/test-udpsendwrap.js:54:3)", + "tail": " ^\nAssertionError: Checking invocations at stage \"when process exits\":\n Trying to check invocation for an activity, but it was empty/undefined.\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at checkInvocations (/test/async-hooks/hook-checks.js:21:10)\n at onexit (/test/async-hooks/test-udpsendwrap.js:54:3)", "retried": true }, "deno": { @@ -10987,7 +10888,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ITEWRAPs when process exits\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at checkDestroyedWriteWraps (/test/async-hooks/test-writewrap.js:36:10)\n at onexit (/test/async-hooks/test-writewrap.js:112:3)", + "tail": "as = hooks.activitiesOfTypes('WRITEWRAP');\n36 | assert.strictEqual(as.length, n,\n ^\nAssertionError: 0 out of 1 WRITEWRAPs when process exits\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at checkDestroyedWriteWraps (/test/async-hooks/test-writewrap.js:36:10)\n at onexit (/test/async-hooks/test-writewrap.js:112:3)", "retried": true }, "deno": { @@ -11018,7 +10919,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ernalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"zlib\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/async-hooks/test-zlib.zlib-binding.deflate.js:13:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"zlib\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/async-hooks/test-zlib.zlib-binding.deflate.js:13:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11049,7 +10950,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ve',\n host: 'localhost:60550'\n },\n method: 'GET',\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-proxy-fetch.mjs:44:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "t': 'node',\n accept: '*/*',\n connection: 'keep-alive',\n host: 'localhost:61186'\n },\n method: 'GET',\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-proxy-fetch.mjs:44:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11082,7 +10983,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ 'http://localhost/test',\n+ 'http://localhosthttp://localhost:65181/test'\n- 'http://localhost:65181/test',\n- 'http://localhost:65181/test'\n ]\n\n at innerFail (node:assert:48:32)\n at deepStrictEqual (node:assert:152:14)\n at (/test/client-proxy/test-http-proxy-perf-hooks.mjs:57:10)", + "tail": "nError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ 'http://localhost/test',\n+ 'http://localhosthttp://localhost:61189/test'\n- 'http://localhost:61189/test',\n- 'http://localhost:61189/test'\n ]\n\n at innerFail (node:assert:48:32)\n at deepStrictEqual (node:assert:152:14)\n at (/test/client-proxy/test-http-proxy-perf-hooks.mjs:57:10)", "retried": true }, "deno": { @@ -11115,7 +11016,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'localhost'\n- 'localhost:61911'\n ^\n\n generatedMessage: true,\n actual: \"localhost\",\n expected: \"localhost:61911\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-proxy-request-absolute-path-authority-match.mjs:65:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "r: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'localhost'\n- 'localhost:61187'\n ^\n\n generatedMessage: true,\n actual: \"localhost\",\n expected: \"localhost:61187\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-proxy-request-absolute-path-authority-match.mjs:65:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11148,7 +11049,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected\n\n+ 'http://localhost:3000/*'\n- '*'\n\n generatedMessage: false,\n actual: \"http://localhost:3000/*\",\n expected: \"*\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at check (/test/client-proxy/test-http-proxy-request-authority-construction.mjs:18:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ocalhost\",\"port\":3000,\"method\":\"OPTIONS\",\"path\":\"*\"}\n+ actual - expected\n\n+ 'http://localhost:3000/*'\n- '*'\n\n generatedMessage: false,\n actual: \"http://localhost:3000/*\",\n expected: \"*\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at check (/test/client-proxy/test-http-proxy-request-authority-construction.mjs:18:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11619,7 +11520,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "2:52)\\n at emit (node:events:118:23)\\n at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /Error: socket hang up/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-proxy-request-proxy-failure-hang-up.mjs:33:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\"ECONNRESET\\\"\\n\\n at socketOnEndInner (node:_http_client:322:52)\\n at emit (node:events:118:23)\\n at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /Error: socket hang up/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-proxy-request-proxy-failure-hang-up.mjs:33:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11789,7 +11690,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t:60995'\n },\n method: 'GET',\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch-default.mjs:37:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "'*/*',\n connection: 'keep-alive',\n host: 'localhost:61286'\n },\n method: 'GET',\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch-default.mjs:37:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11849,7 +11750,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ethod: 'CONNECT',\n- url: 'localhost:61073'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch-https.mjs:38:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ction: 'close',\n- host: 'localhost:61295'\n- },\n- method: 'CONNECT',\n- url: 'localhost:61295'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch-https.mjs:38:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11907,7 +11808,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "T',\n- url: 'http://localhost:61122/test'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch-restore.mjs:37:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ive',\n- host: 'localhost:61294'\n- },\n- method: 'GET',\n- url: 'http://localhost:61294/test'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch-restore.mjs:37:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11940,7 +11841,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "hod: 'GET',\n- url: 'http://localhost:61156/test'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch.mjs:36:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "'keep-alive',\n- host: 'localhost:61300'\n- },\n- method: 'GET',\n- url: 'http://localhost:61300/test'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-fetch.mjs:36:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12189,7 +12090,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " url: 'http://localhost:61291/test'\n+ }\n+ ]\n- []\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs:29:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "+ host: 'localhost:61333'\n+ },\n+ method: 'GET',\n+ url: 'http://localhost:61333/test'\n+ }\n+ ]\n- []\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs:29:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12249,7 +12150,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " },\n method: 'CONNECT',\n url: 'localhost:61347'\n }\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-fetch.mjs:52:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "- connection: 'close',\n host: 'localhost:61346'\n },\n method: 'CONNECT',\n url: 'localhost:61346'\n }\n\n generatedMessage: true,\n actual: [\n [Object ...]\n],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-fetch.mjs:52:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12280,7 +12181,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "53:22)\\n at emit (node:events:97:22)\\n at emitReadable_ (internal:streams/readable:401:16)\\n\\n\",\n expected: /via http:\\/\\/localhost:\\d+\\/?/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-auth-failure.mjs:56:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " at onProxyData (node:https:77:176)\\n at read (node:https:53:22)\\n at emit (node:events:97:22)\\n at emitReadable_ (internal:streams/readable:401:16)\\n\\n\",\n expected: /via http:\\/\\/localhost:\\d+\\/?/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-auth-failure.mjs:56:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12340,7 +12241,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /ERR_PROXY_TUNNEL.*Connection to establish proxy tunnel ended unexpectedly/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-empty-response.mjs:45:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "End (node:https:101:33)\\n at emit (node:events:118:23)\\n at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /ERR_PROXY_TUNNEL.*Connection to establish proxy tunnel ended unexpectedly/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-empty-response.mjs:45:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12585,7 +12486,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* NOT-HTTP MALFORMED RESPONSE*/g).length')\n at /test/client-proxy/test-https-proxy-request-malformed-response.mjs:46:115\n\nBun v1.4.0 (macOS arm64)", + "tail": "ength, 1);\n ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* NOT-HTTP MALFORMED RESPONSE*/g).length')\n at /test/client-proxy/test-https-proxy-request-malformed-response.mjs:46:115\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12670,7 +12571,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* HTTP\\/1\\.1 404 Not Found/g).length')\n at /test/client-proxy/test-https-proxy-request-proxy-failure-404.mjs:46:111\n\nBun v1.4.0 (macOS arm64)", + "tail": "ound/g).length, 1);\n ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* HTTP\\/1\\.1 404 Not Found/g).length')\n at /test/client-proxy/test-https-proxy-request-proxy-failure-404.mjs:46:111\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12699,7 +12600,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* HTTP\\/1\\.1 500 Connection Error/g).length')\n at /test/client-proxy/test-https-proxy-request-proxy-failure-500.mjs:47:118\n\nBun v1.4.0 (macOS arm64)", + "tail": ", 1);\n ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* HTTP\\/1\\.1 500 Connection Error/g).length')\n at /test/client-proxy/test-https-proxy-request-proxy-failure-500.mjs:47:118\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12728,7 +12629,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* HTTP\\/1\\.1 502 Bad Gateway/g).length')\n at /test/client-proxy/test-https-proxy-request-proxy-failure-502.mjs:45:113\n\nBun v1.4.0 (macOS arm64)", + "tail": "/g).length, 1);\n ^\nTypeError: null is not an object (evaluating 'stderr.match(/ERR_PROXY_TUNNEL.*Failed to establish tunnel to .* HTTP\\/1\\.1 502 Bad Gateway/g).length')\n at /test/client-proxy/test-https-proxy-request-proxy-failure-502.mjs:45:113\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12757,7 +12658,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ndReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /ERR_PROXY_TUNNEL.*Connection to establish proxy tunnel ended unexpectedly/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-proxy-failure-hang-up.mjs:45:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "de:https:101:33)\\n at emit (node:events:118:23)\\n at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /ERR_PROXY_TUNNEL.*Connection to establish proxy tunnel ended unexpectedly/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-proxy-failure-hang-up.mjs:45:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12786,7 +12687,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "52)\\n at emit (node:events:118:23)\\n at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /Error: socket hang up/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-server-failure-hang-up.mjs:45:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "CONNRESET\\\"\\n\\n at socketOnEndInner (node:_http_client:322:52)\\n at emit (node:events:118:23)\\n at endReadableNT (internal:streams/readable:901:50)\\n\\n\",\n expected: /Error: socket hang up/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-https-proxy-request-server-failure-hang-up.mjs:45:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12950,7 +12851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " },\n- method: 'GET',\n- url: 'http://localhost:61793/test'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-use-env-proxy-cli-http.mjs:38:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " connection: 'keep-alive',\n- host: 'localhost:61442'\n- },\n- method: 'GET',\n- url: 'http://localhost:61442/test'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-use-env-proxy-cli-http.mjs:38:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12983,7 +12884,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "'\n- },\n- method: 'CONNECT',\n- url: 'localhost:61835'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-use-env-proxy-cli-https.mjs:49:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "'proxy-connection': 'keep-alive',\n- host: 'localhost:61446'\n- },\n- method: 'CONNECT',\n- url: 'localhost:61446'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-use-env-proxy-cli-https.mjs:49:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -13014,7 +12915,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "logs.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-use-env-proxy-precedence.mjs:86:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "oxy because CLI flag takes precedence\n86 | assert.strictEqual(logs.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/client-proxy/test-use-env-proxy-precedence.mjs:86:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -13043,7 +12944,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "9 | \n20 | \n21 | describe('CJS ↔︎ ESM interop warnings', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-cjs-esm-warn.js:21:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-cjs-esm-warn.js:60:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) CJS ↔︎ ESM interop warnings > [10.31ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -13076,7 +12977,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "place(/\\\\/g, '\\\\\\\\') : filePath;\n16 | }\n17 | \n18 | describe('legacyMainResolve', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-cjs-legacyMainResolve-permission.js:18:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-cjs-legacyMainResolve-permission.js:137:14\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) legacyMainResolve > should ensure permission model when resolving by packageJsonUrl [20.61ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [67.00ms]", "retried": true }, "deno": { @@ -13107,7 +13008,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "error: No such built-in module: node:internal/modules/esm/resolve\n\nBun v1.4.0 (macOS arm64)", + "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/es-module/test-cjs-legacyMainResolve.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: No such built-in module: node:internal/modules/esm/resolve\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [24.00ms]", "retried": true }, "deno": { @@ -13281,7 +13182,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tion (SyntaxError).\n generatedMessage: false,\n actual: undefined,\n expected: {\n name: \"SyntaxError\",\n message: /Unexpected token 'export'/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-disable-require-module-with-detection.js:14:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ert.throws(\n ^\nAssertionError: Missing expected exception (SyntaxError).\n generatedMessage: false,\n actual: undefined,\n expected: {\n name: \"SyntaxError\",\n message: /Unexpected token 'export'/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-disable-require-module-with-detection.js:14:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -13438,35 +13339,33 @@ "exit": 0 } }, - "es-module/test-esm-cjs-builtins.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "th('/es-modules/builtin-imports-case.mjs');\n11 | \n12 | describe('ESM: importing builtins & CJS', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-cjs-builtins.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, + "es-module/test-esm-cjs-builtins.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "deno": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, "es-module/test-esm-cjs-exports.js": { "node": { "pass": true, @@ -13482,7 +13381,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t');\n 8 | \n 9 | \n10 | describe('ESM: importing CJS', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-cjs-exports.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "d 'default'/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-cjs-exports.js:24:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: importing CJS > should error on invalid CJS exports [12.04ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [60.00ms]", "retried": true }, "deno": { @@ -13511,7 +13410,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "20 | \n21 | describe('ESM: Errors for unexpected exports', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-cjs-load-error-note.mjs:21:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssTicksAndRejections (native:7:39)\n(fail) ESM: Errors for unexpected exports > should NOT include note [11.01ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [10.49ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [9.92ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [8.58ms]\n\n 5 pass\n 5 fail\nRan 10 tests across 1 file. [131.00ms]", "retried": true }, "deno": { @@ -13539,11 +13438,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "\n 7 | const { describe, it } = require('node:test');\n 8 | \n 9 | \n10 | describe('ESM: importing CJS', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-cjs-main.js:10:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -13602,7 +13499,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tart an empty Bun project from a built-in template\n create astro Create a new project from a template (bun c)\n upgrade Upgrade to latest version of Bun.\n\n --help Print help text for command.\n\nLearn more about Bun: https://bun.com/docs\nJoin our Discord community: https://bun.com/discord\n\nerror: Invalid Argument '-C'", + "tail": "tart an empty Bun project from a built-in template\n create elysia Create a new project from a template (bun c)\n upgrade Upgrade to latest version of Bun.\n\n --help Print help text for command.\n\nLearn more about Bun: https://bun.com/docs\nJoin our Discord community: https://bun.com/discord\n\nerror: Invalid Argument '-C'", "retried": true }, "deno": { @@ -13660,7 +13557,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ '__esModule',\n 'default'\n ]\n\n generatedMessage: true,\n actual: [ \"__esModule\", \"default\" ],\n expected: [ \"default\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-data-urls.js:37:12", + "tail": "s(ns), ['default']);\n ^\nAssertionError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ '__esModule',\n 'default'\n ]\n\n generatedMessage: true,\n actual: [ \"__esModule\", \"default\" ],\n expected: [ \"default\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-data-urls.js:37:12", "retried": true }, "deno": { @@ -13720,9 +13617,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "om 'node:assert';\n6 | \n7 | describe('Module syntax detection', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-detect-ambiguous.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -13755,7 +13652,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ookupService (node:dns:484:50)\n at (/test/es-module/test-esm-dns-promises.mjs:9:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/es-module/test-esm-dns-promises.mjs:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: The \"address\" argument is invalid. Received type string ('fasdfdsaf')\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at lookupService (node:dns:484:50)\n at (/test/es-module/test-esm-dns-promises.mjs:9:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/es-module/test-esm-dns-promises.mjs:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -13813,7 +13710,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'fulfilled'\n- 'rejected'\n\n generatedMessage: true,\n actual: \"fulfilled\",\n expected: \"rejected\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/es-module/test-esm-dynamic-import-attribute.js:33:12)", + "tail": "ctEqual(results[1].status, 'rejected');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'fulfilled'\n- 'rejected'\n\n generatedMessage: true,\n actual: \"fulfilled\",\n expected: \"rejected\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/es-module/test-esm-dynamic-import-attribute.js:33:12)", "retried": true }, "deno": { @@ -13844,7 +13741,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alues to be strictly equal:\n+ actual - expected\n\n+ 'fulfilled'\n- 'rejected'\n\n generatedMessage: true,\n actual: \"fulfilled\",\n expected: \"rejected\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-dynamic-import-attribute.mjs:31:10\n\nBun v1.4.0 (macOS arm64)", + "tail": ".status, 'rejected');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'fulfilled'\n- 'rejected'\n\n generatedMessage: true,\n actual: \"fulfilled\",\n expected: \"rejected\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-dynamic-import-attribute.mjs:31:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -13875,7 +13772,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " \n17 | assert(!tickDuringCJSImport);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-dynamic-import-commonjs.js:17:3\n at processTicksAndRejections (native:7:39)", + "tail": "ue; });\n15 | await import(fixtures.fileURL('empty.cjs'));\n16 | \n17 | assert(!tickDuringCJSImport);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-dynamic-import-commonjs.js:17:3\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -13906,7 +13803,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "es.fileURL('empty.cjs'));\n8 | \n9 | assert(!tickDuringCJSImport);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-dynamic-import-commonjs.mjs:9:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "(() => { tickDuringCJSImport = true; });\n7 | await import(fixtures.fileURL('empty.cjs'));\n8 | \n9 | assert(!tickDuringCJSImport);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-dynamic-import-commonjs.mjs:9:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14023,11 +13920,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " it } = require('node:test');\n 8 | \n 9 | \n10 | describe('ESM: importing an encoded path', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-encoded-path-native.js:10:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -14084,7 +13979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'BuildMessage'\n- 'SyntaxError'\n\n generatedMessage: true,\n actual: \"BuildMessage\",\n expected: \"SyntaxError\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-error-cache.js:13:12", + "tail": " assert.strictEqual(e.name, 'SyntaxError');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'BuildMessage'\n- 'SyntaxError'\n\n generatedMessage: true,\n actual: \"BuildMessage\",\n expected: \"SyntaxError\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-error-cache.js:13:12", "retried": true }, "deno": { @@ -14140,7 +14035,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | \n8 | describe('ESM: warn for obsolete hooks provided', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-experimental-warnings.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "/test-esm-experimental-warnings.mjs:43:16\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: warn for obsolete hooks provided > experimental warnings for enabled experimental feature > should print for `--experimental-loader` may be removed in the future [11.09ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -14171,7 +14066,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "js';\n13 | `;\n14 | \n15 | describe('ESM: nonexistent exports', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-export-not-found.mjs:15:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-export-not-found.mjs:38:14\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: nonexistent exports > should throw for nonexistent exports via multi-line import [10.86ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -14200,7 +14095,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " be strictly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_INVALID_PACKAGE_TARGET'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_INVALID_PACKAGE_TARGET\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-exports.mjs:139:14", + "tail": ");\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_PATH_NOT_EXPORTED'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_PATH_NOT_EXPORTED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-exports.mjs:131:14", "retried": true }, "deno": { @@ -14231,7 +14126,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctual - expected\n\n+ 'ERR_MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_PATH_NOT_EXPORTED'\n ^\n\n generatedMessage: true,\n actual: \"ERR_MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_PATH_NOT_EXPORTED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-exports.mjs:131:14", + "tail": ");\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_PATH_NOT_EXPORTED'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_PATH_NOT_EXPORTED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-exports.mjs:131:14", "retried": true }, "deno": { @@ -14262,7 +14157,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":test';\n 9 | \n10 | describe('ESM in main field', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-extension-lookup-deprecation.mjs:10:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "mple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-extension-lookup-deprecation.mjs:117:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM in main field > should emit warning when \"main\" is an absolute path without extension [9.75ms]\n\n 2 pass\n 4 fail\nRan 6 tests across 1 file. [102.00ms]", "retried": true }, "deno": { @@ -14293,7 +14188,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "om 'node:assert';\n6 | \n7 | describe('extensionless ES modules within a \"type\": \"module\" package scope', {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-extensionless-esm-and-wasm.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "le/test-esm-extensionless-esm-and-wasm.mjs:87:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) extensionless Wasm within no package scope > should error as the entry point [15.29ms]\n(pass) extensionless Wasm within no package scope > should run on import [0.14ms]\n\n 6 pass\n 4 fail\nRan 10 tests across 1 file. [86.00ms]", "retried": true }, "deno": { @@ -14324,7 +14219,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "dex.mjs';\n ^\nerror: Cannot use import statement with CommonJS-only features\n at /test/es-module/test-esm-forbidden-globals.mjs:1:8\n\nnote: Try require(\"../common/index.mjs\") instead\nnote: This file is CommonJS because 'module' was used\nnote: This file is CommonJS because 'exports' was used\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | import '../common/index.mjs';\n ^\nerror: Cannot use import statement with CommonJS-only features\n at /test/es-module/test-esm-forbidden-globals.mjs:1:8\n\nnote: Try require(\"../common/index.mjs\") instead\nnote: This file is CommonJS because 'module' was used\nnote: This file is CommonJS because 'exports' was used\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14382,7 +14277,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/[eval]'\\n\\nBun v1.4.0 (macOS arm64)\\n\",\n expected: /Use `importAttributes` instead of `importAssertions`/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-assertion-warning.mjs:39:10\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": \"error: Cannot resolve invalid data URL 'data:' from '/[eval]'\\n\\nBun v1.4.0 (macOS arm64)\\n\",\n expected: /Use `importAttributes` instead of `importAssertions`/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-assertion-warning.mjs:39:10\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14496,7 +14391,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpected: {\n code: \"ERR_UNKNOWN_MODULE_FORMAT\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at test (/test/es-module/test-esm-import-attributes-errors.js:9:16)", + "tail": "ejection.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_UNKNOWN_MODULE_FORMAT\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at test (/test/es-module/test-esm-import-attributes-errors.js:9:16)", "retried": true }, "deno": { @@ -14591,7 +14486,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ues,\n9 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/assert.js:9:5)\n at (/test/es-module/test-esm-import-attributes-validation-text.js:7:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "4 | ArrayPrototypeFilter,\n5 | ArrayPrototypeIncludes,\n6 | ObjectKeys,\n7 | ObjectPrototypeHasOwnProperty,\n8 | ObjectValues,\n9 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/assert.js:9:5)\n at (/test/es-module/test-esm-import-attributes-validation-text.js:7:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14624,7 +14519,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctValues,\n9 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/assert.js:9:5)\n at (/test/es-module/test-esm-import-attributes-validation.js:7:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "4 | ArrayPrototypeFilter,\n5 | ArrayPrototypeIncludes,\n6 | ObjectKeys,\n7 | ObjectPrototypeHasOwnProperty,\n8 | ObjectValues,\n9 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/assert.js:9:5)\n at (/test/es-module/test-esm-import-attributes-validation.js:7:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14655,7 +14550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e_options };\n13 | \n14 | describe('import modules using --import', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-import-flag.mjs:14:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ing --import > should import --require before --import [9.70ms]\n(pass) import modules using --import > should import a module with top level await [21.56ms]\n(pass) import modules using --import > should import files sequentially [20.45ms]\n(skip) import modules using --import > should import files from the env before ones from the CLI\n\n 10 pass\n 1 skip\n 2 fail\nRan 13 tests across 1 file. [164.00ms]", "retried": true }, "deno": { @@ -14686,7 +14581,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st';\n6 | \n7 | \n8 | describe('ESM: named JSON exports', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-import-json-named-export.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-json-named-export.mjs:16:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: named JSON exports > should throw, citing named import [12.22ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [42.00ms]", "retried": true }, "deno": { @@ -14717,7 +14612,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "21 | `;\n22 | }\n23 | \n24 | const onlyWithAmaro = { skip: !process.config.variables.node_use_amaro };\n25 | \n26 | describe('import.meta.main in evaluated scripts', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-import-meta-main-eval.mjs:26:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ort.meta.main in typescript scripts > should evaluate true in evaluated script\n(skip) import.meta.main in typescript scripts > should evaluate true in worker instantiated with module source by evaluated script\n(skip) import.meta.main in typescript scripts > should evaluate true in worker instantiated with `data:` URL by evaluated script\n\n 1 pass\n 3 skip\n 2 fail\nRan 6 tests across 1 file. [96.00ms]", "retried": true }, "deno": { @@ -14841,7 +14736,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 'filename',\n- 'main',\n- 'resolve',\n- 'url'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"dirname\", \"filename\", \"main\", \"resolve\", \"url\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-meta.mjs:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ctly deep-equal:\n+ actual - expected\n\n+ []\n- [\n- 'dirname',\n- 'filename',\n- 'main',\n- 'resolve',\n- 'url'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"dirname\", \"filename\", \"main\", \"resolve\", \"url\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-meta.mjs:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14907,7 +14802,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fffdo');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'fo\\x80o' !== 'fo�o'\n\n generatedMessage: true,\n actual: \"fo€o\",\n expected: \"fo�o\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-text.mjs:31:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n30 | });\n31 | assert.strictEqual(dataInvalidUtf8.default, 'fo\\ufffdo');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'fo\\x80o' !== 'fo�o'\n\n generatedMessage: true,\n actual: \"fo€o\",\n expected: \"fo�o\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-import-text.mjs:31:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -14940,7 +14835,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_IMPORT_NOT_DEFINED'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_IMPORT_NOT_DEFINED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-imports.mjs:103:14", + "tail": "\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_IMPORT_NOT_DEFINED'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_IMPORT_NOT_DEFINED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-imports.mjs:103:14", "retried": true }, "deno": { @@ -14971,7 +14866,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_IMPORT_NOT_DEFINED'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_IMPORT_NOT_DEFINED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-imports.mjs:103:14", + "tail": "\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'MODULE_NOT_FOUND'\n- 'ERR_PACKAGE_IMPORT_NOT_DEFINED'\n\n generatedMessage: true,\n actual: \"MODULE_NOT_FOUND\",\n expected: \"ERR_PACKAGE_IMPORT_NOT_DEFINED\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-imports.mjs:103:14", "retried": true }, "deno": { @@ -15002,7 +14897,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt.strictEqual(name, 'esm');\n12 | assert(!Module._cache[filename]);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-in-require-cache-2.mjs:12:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ures/es-modules/esm-in-require-cache/import-esm.mjs');\n11 | assert.strictEqual(name, 'esm');\n12 | assert(!Module._cache[filename]);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-in-require-cache-2.mjs:12:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15031,7 +14926,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ssert.strictEqual(name, 'esm');\n11 | assert(!require.cache[filename]);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-in-require-cache.js:11:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ixtures/es-modules/esm-in-require-cache/import-esm.mjs');\n10 | assert.strictEqual(name, 'esm');\n11 | assert(!require.cache[filename]);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-in-require-cache.js:11:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15060,7 +14955,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | \n8 | describe('ESM: ensure initialization happens only once', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-initialization.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-initialization.mjs:18:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: ensure initialization happens only once > [7.27ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [31.00ms]", "retried": true }, "deno": { @@ -15091,7 +14986,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/es-module/test-esm-invalid-data-urls.js:6:16", + "tail": "odule format: text/plain for URL data:text/plain,export default0\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/es-module/test-esm-invalid-data-urls.js:6:16", "retried": true }, "deno": { @@ -15122,7 +15017,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "');\n 9 | \n10 | \n11 | describe('ESM: Package.json', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-invalid-pjson.js:11:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "lse,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-invalid-pjson.js:18:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: Package.json > should throw on invalid pson [11.38ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -15153,7 +15048,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "other.one, 'zalgo');\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 'zalgo'\n\n generatedMessage: true,\n actual: 1,\n expected: \"zalgo\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-json-cache.mjs:19:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n18 | assert.strictEqual(mod.one, 1);\n19 | assert.strictEqual(another.one, 'zalgo');\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 'zalgo'\n\n generatedMessage: true,\n actual: 1,\n expected: \"zalgo\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-json-cache.mjs:19:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15184,7 +15079,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " import secret from '../fixtures/experimental.json' with { type: 'json' };\n11 | \n12 | describe('ESM: importing JSON', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-json.mjs:12:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-json.mjs:59:16\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at node:test:1513:71\n at processTicksAndRejections (native:7:39)\n(fail) ESM: importing JSON > should load different modules when the URL is different [3.85ms]\n\n 3 pass\n 1 fail\nRan 4 tests across 1 file. [39.00ms]", "retried": true }, "deno": { @@ -15213,7 +15108,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d,\n+ [Function: readFile]\n- undefined\n ]\n\n generatedMessage: true,\n actual: [ undefined, [Function: readFile2] ],\n expected: [ undefined, undefined ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-live-binding.mjs:19:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "to be strictly deep-equal:\n+ actual - expected\n\n [\n undefined,\n+ [Function: readFile]\n- undefined\n ]\n\n generatedMessage: true,\n actual: [ undefined, [Function: readFile2] ],\n expected: [ undefined, undefined ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-live-binding.mjs:19:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15271,7 +15166,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "monInput,\n16 | ];\n17 | \n18 | describe('ESM: loader chaining', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-chaining.mjs:18:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "cted: /resolve passthru/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-chaining.mjs:206:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: loader chaining > should throw for incomplete resolve chain, citing errant loader & hook [4.74ms]", "retried": true }, "deno": { @@ -15331,7 +15226,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| import assert from 'node:assert';\n4 | import { execPath } from 'node:process';\n5 | import { describe, it } from 'node:test';\n6 | \n7 | describe('default resolver', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-default-resolver.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "mple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-default-resolver.mjs:61:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) default resolver > should identify the parent module of an invalid URL host in import specifier [10.64ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [63.00ms]", "retried": true }, "deno": { @@ -15389,7 +15284,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ip: !process.config.variables.node_use_amaro };\n27 | \n28 | describe('--entry-url', { concurrency: true }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-entry-url.mjs:28:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "r-entry-url.mjs:12:12)\n at /test/es-module/test-esm-loader-entry-url.mjs:71:11\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) --entry-url > should support loading `data:` URLs [8.45ms]\n(skip) --entry-url > should support loading TypeScript URLs\n\n 0 pass\n 1 skip\n 5 fail\nRan 6 tests across 1 file. [74.00ms]", "retried": true }, "deno": { @@ -15447,7 +15342,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " const {\n45 | address: host,\n46 | port,\n47 | } = server.address();\n48 | \n49 | describe('ESM: http import via loader', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-http-imports.mjs:49:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-http-imports.mjs:82:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: http import via loader > should load using import inside --eval code [4.77ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [45.00ms]", "retried": true }, "deno": { @@ -15536,7 +15431,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n prototype: [Object ...],\n setMaxListeners: [Function: setMaxListeners2],\n usingDomains: false,\n},\n expected: Module {\n EventEmitter: \"This is mocked!\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-mock.mjs:11:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "erCount2],\n on: [Function: on],\n once: [AsyncFunction: once2],\n prototype: [Object ...],\n setMaxListeners: [Function: setMaxListeners2],\n usingDomains: false,\n},\n expected: Module {\n EventEmitter: \"This is mocked!\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-mock.mjs:11:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15567,7 +15462,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | hardenRegExp,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/loader.js:15:5)\n at (/test/es-module/test-esm-loader-modulemap.js:7:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | Promise,\n11 | PromisePrototypeThen,\n12 | RegExpPrototypeSymbolReplace,\n13 | encodeURIComponent,\n14 | hardenRegExp,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/loader.js:15:5)\n at (/test/es-module/test-esm-loader-modulemap.js:7:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15598,7 +15493,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e:process';\n5 | import { describe, it } from 'node:test';\n6 | \n7 | \n8 | describe('ESM: nonexistent loader', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-not-found.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ed: /ERR_MODULE_NOT_FOUND/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-not-found.mjs:19:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: nonexistent loader > should throw [9.51ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [33.00ms]", "retried": true }, "deno": { @@ -15629,7 +15524,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/javascript,${encodeURIComponent(module)}`)};`,\n21 | };\n22 | \n23 | describe('ESM: programmatically register loaders', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-programmatically.mjs:23:1\n\nBun v1.4.0 (macOS arm64)", + "tail": ")\\n\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-programmatically.mjs:184:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: programmatically register loaders > works registering loaders as package name [4.96ms]", "retried": true }, "deno": { @@ -15660,7 +15555,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "de: 0,\n signal: null,\n stderr: \"\",\n stdout: \"{\\\"before\\\":{\\\"importedESM\\\":0,\\\"importedCJS\\\":0},\\\"after\\\":{\\\"importedESM\\\":1,\\\"importedCJS\\\":0}}\\n\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-resolve-type.mjs:36:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "\\\"importedESM\\\":0,\\\"importedCJS\\\":0}}\\n\",\n},\n expected: {\n code: 0,\n signal: null,\n stderr: \"\",\n stdout: \"{\\\"before\\\":{\\\"importedESM\\\":0,\\\"importedCJS\\\":0},\\\"after\\\":{\\\"importedESM\\\":1,\\\"importedCJS\\\":0}}\\n\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-resolve-type.mjs:36:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15691,7 +15586,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ncodeURIComponent,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/resolve.js:24:5)\n at (/test/es-module/test-esm-loader-search.js:10:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| StringPrototypeReplace,\n20 | StringPrototypeSlice,\n21 | StringPrototypeSplit,\n22 | StringPrototypeStartsWith,\n23 | encodeURIComponent,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/modules/esm/resolve.js:24:5)\n at (/test/es-module/test-esm-loader-search.js:10:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15722,7 +15617,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st';\n6 | \n7 | describe('Loader hooks throwing errors', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-spawn-promisified.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ed: /ERR_INVALID_RETURN_PROPERTY_VALUE/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-spawn-promisified.mjs:129:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) Loader hooks throwing errors > throws on invalid format property type [6.88ms]", "retried": true }, "deno": { @@ -15782,7 +15677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode:test';\n6 | \n7 | \n8 | describe('ESM: thenable loader hooks', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-thenable.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-thenable.mjs:40:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: thenable loader hooks > should just reject without an error (but NOT crash the node process) [7.22ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [50.00ms]", "retried": true }, "deno": { @@ -15842,7 +15737,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | \n7 | \n8 | describe('ESM: loader with syntax error', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-loader-with-syntax-error.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "perator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-loader-with-syntax-error.mjs:16:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: loader with syntax error > should crash the node process [10.08ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -15929,7 +15824,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": {\n code: \"ERR_UNSUPPORTED_DIR_IMPORT\",\n url: \"file:///test/fixtures/es-modules/pjson-main\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_UNSUPPORTED_DIR_IMPORT\",\n url: \"file:///test/fixtures/es-modules/pjson-main\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -15962,7 +15857,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n7 | \n8 | describe('ESM: module not found hint', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-module-not-found-commonjs-hint.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "perator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-module-not-found-commonjs-hint.mjs:52:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: module not found hint > should cite a variant form [7.97ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [93.00ms]", "retried": true }, "deno": { @@ -16024,7 +15919,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ries(\n7 | Object.getOwnPropertyDescriptors(new Module().require('fs')))\n ^\nTypeError: new Module().require is not a function. (In 'new Module().require(\"fs\")', 'new Module().require' is undefined)\n at /test/es-module/test-esm-namespace.mjs:7:49\n\nBun v1.4.0 (macOS arm64)", + "tail": " | import Module from 'module';\n5 | \n6 | const keys = Object.entries(\n7 | Object.getOwnPropertyDescriptors(new Module().require('fs')))\n ^\nTypeError: new Module().require is not a function. (In 'new Module().require(\"fs\")', 'new Module().require' is undefined)\n at /test/es-module/test-esm-namespace.mjs:7:49\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16082,7 +15977,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " from 'node:test';\n6 | \n7 | \n8 | describe('ESM: non-js extensions fail', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-non-js.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ed: /ERR_UNKNOWN_FILE_EXTENSION/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-non-js.mjs:16:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: non-js extensions fail > [13.24ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [37.00ms]", "retried": true }, "deno": { @@ -16110,11 +16005,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " | describe('ESM: experimental warning for import.meta.resolve', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-nowarn-exports.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -16142,7 +16035,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n[process 53034]: status = 0, signal = null\nerror: - stdout did not match /dep-a-value/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map.json --input-type=module --eval import dep from 'dep-a'; console.log(dep);\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n\n[process 8620]: status = 0, signal = null\nerror: - stdout did not match /dep-a-value/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map.json --input-type=module --eval import dep from 'dep-a'; console.log(dep);\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16208,7 +16101,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ss 53069]: status = 1, signal = null\nerror: - stderr did not match /ERR_PACKAGE_MAP_INVALID/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map-invalid-syntax.json --input-type=module --eval import x from 'dep-a';\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ess 8629]: status = 1, signal = null\nerror: - stderr did not match /ERR_PACKAGE_MAP_INVALID/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map-invalid-syntax.json --input-type=module --eval import x from 'dep-a';\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16241,7 +16134,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process 53091]: status = 0, signal = null\nerror: - stdout did not match /esm/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map.json --input-type=module --eval import { format } from 'dep-a'; console.log(format);\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8631]: status = 0, signal = null\nerror: - stdout did not match /esm/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map.json --input-type=module --eval import { format } from 'dep-a'; console.log(format);\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16307,7 +16200,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "75]: status = 0, signal = null\nerror: - stdout did not match /pkg-value/\n options: {\n cwd: \"/test/fixtures/package-map/pkg-other\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map-path-prefix.json --input-type=module --eval import pkg from 'pkg'; console.log(pkg);\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "35]: status = 0, signal = null\nerror: - stdout did not match /pkg-value/\n options: {\n cwd: \"/test/fixtures/package-map/pkg-other\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/fixtures/package-map/package-map-path-prefix.json --input-type=module --eval import pkg from 'pkg'; console.log(pkg);\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16340,7 +16233,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "89]: status = 0, signal = null\nerror: - stdout did not match /dep-a-value/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/.tmp.20/symlinked-package-map-esm/package-map.json --input-type=module --eval import dep from 'dep-a'; console.log(dep);\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "0]: status = 0, signal = null\nerror: - stdout did not match /dep-a-value/\n options: {\n cwd: \"/test/fixtures/package-map/root\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-package-map /test/.tmp.283/symlinked-package-map-esm/package-map.json --input-type=module --eval import dep from 'dep-a'; console.log(dep);\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16491,7 +16384,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "be('Invoke the main file via a symlink.', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-preserve-symlinks-main.js:44:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "_ASSERTION\"\n\n at /test/es-module/test-esm-preserve-symlinks-main.js:74:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) Invoke the main file via a symlink. > should resolve relative imports in the main file when filename(index.js) is omitted [23.95ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [87.00ms]", "retried": true }, "deno": { @@ -16580,7 +16473,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-preserve-symlinks.js:37:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-preserve-symlinks.js:37:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16692,7 +16585,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | describe('module.register() deprecation (DEP0205)', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-register-deprecation.mjs:12:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-register-deprecation.mjs:57:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) module.register() deprecation (DEP0205) > throws when --throw-deprecation is set [9.98ms]\n\n 1 pass\n 3 fail\nRan 4 tests across 1 file. [65.00ms]", "retried": true }, "deno": { @@ -16722,11 +16615,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "re('node:process');\n 8 | const { describe, it } = require('node:test');\n 9 | \n10 | \n11 | describe('ESM: REPL runs', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-repl-imports.js:11:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -16810,7 +16701,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ESM_RACE_CONDITION\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-require-race-condition.js:6:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "st assert = require('node:assert');\n5 | \n6 | assert.throws(\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ESM_RACE_CONDITION\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-require-race-condition.js:6:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -16960,7 +16851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "5 | \n6 | assert.strictEqual(one, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n2 !== 1\n\n generatedMessage: true,\n actual: 2,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-snapshot.mjs:6:8\n\nBun v1.4.0 (macOS arm64)" + "tail": "s/es-modules/esm-snapshot.js';\n4 | import assert from 'assert';\n5 | \n6 | assert.strictEqual(one, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n2 !== 1\n\n generatedMessage: true,\n actual: 2,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-snapshot.mjs:6:8\n\nBun v1.4.0 (macOS arm64)" } }, "deno": { @@ -16991,7 +16882,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "describe, it } from 'node:test';\n6 | \n7 | describe('esm source-map', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-source-map.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "js required by esm [13.46ms]\n(pass) esm source-map > should not extract source map urlinside string from esm imported by esm [12.34ms]\n(pass) esm source-map > should not extract source map urlinside string from cjs imported by esm [10.35ms]\n(pass) esm source-map > should not extract source map urlinside string from cjs required by esm [9.46ms]\n\n 4 pass\n 4 fail\nRan 8 tests across 1 file. [127.00ms]", "retried": true }, "deno": { @@ -17107,7 +16998,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n7 | \n8 | describe('ESM: importing a module with syntax error(s)', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-syntax-error.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "xError:/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-syntax-error.mjs:13:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: importing a module with syntax error(s) > should throw [18.68ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [47.00ms]", "retried": true }, "deno": { @@ -17163,7 +17054,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "from 'node:assert';\n4 | \n5 | describe('unusual top-level await syntax errors', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-tla-syntax-errors-not-recognized-as-tla-error.mjs:5:1\n\nBun v1.4.0 (macOS arm64)", + "tail": ": \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-tla-syntax-errors-not-recognized-as-tla-error.mjs:72:14\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) unusual top-level await syntax errors > should throw the error for unrelated syntax errors [11.09ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [461.00ms]", "retried": true }, "deno": { @@ -17192,9 +17083,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "];\n12 | \n13 | describe('ESM: unsettled and rejected promises', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-esm-tla-unfinished.mjs:13:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -17252,7 +17143,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ibe, it } = require('node:test');\n10 | \n11 | describe('Errors related to ESM type field', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-type-field-errors-2.js:11:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-type-field-errors-2.js:13:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) Errors related to ESM type field > Should throw an error when loading CJS from a `type: \"module\"` package. [1.98ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -17395,7 +17286,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ort`.\n12 | describe('ESM: unknown specifiers', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/es-module/test-esm-unknown-extension.js:12:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-unknown-extension.js:23:14\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) ESM: unknown specifiers > should throw [11.27ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [51.00ms]", "retried": true }, "deno": { @@ -17484,7 +17375,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "] {}> [Module] {\n default: {}\n}\n\n generatedMessage: true,\n actual: Module {\n default: [Object ...],\n},\n expected: Module {\n default: [Object ...],\n},\n operator: \"notDeepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-virtual-json.mjs:27:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "t to be strictly deep-equal to:\n\nModule <[Object: null prototype] {}> [Module] {\n default: {}\n}\n\n generatedMessage: true,\n actual: Module {\n default: [Object ...],\n},\n expected: Module {\n default: [Object ...],\n},\n operator: \"notDeepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-esm-virtual-json.mjs:27:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17515,7 +17406,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "n v1.4.0 (macOS arm64)\n\n[process 85948]: --- stdout ---\n\n[process 85948]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-escape-import-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " at /test/fixtures/es-modules/test-wasm-escape-import-names.mjs:5:25\n\nBun v1.4.0 (macOS arm64)\n\n[process 8716]: --- stdout ---\n\n[process 8716]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-escape-import-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17544,7 +17435,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at /test/fixtures/es-modules/test-wasm-globals-all-types.mjs:15:3\n\nBun v1.4.0 (macOS arm64)\n\n[process 70639]: --- stdout ---\n\n[process 70639]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-globals-all-types.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n at /test/fixtures/es-modules/test-wasm-globals-all-types.mjs:15:3\n\nBun v1.4.0 (macOS arm64)\n\n[process 8717]: --- stdout ---\n\n[process 8717]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-globals-all-types.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17575,7 +17466,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "un v1.4.0 (macOS arm64)\n\n[process 86044]: --- stdout ---\n\n[process 86044]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-js-string-builtins.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " at /test/fixtures/es-modules/test-wasm-js-string-builtins.mjs:5:25\n\nBun v1.4.0 (macOS arm64)\n\n[process 8718]: --- stdout ---\n\n[process 8718]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-js-string-builtins.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17606,7 +17497,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "m'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 86048]: --- stdout ---\n\n[process 86048]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-load-exports.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "port named 'add' not found in module '/test/fixtures/es-modules/simple.wasm'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 8723]: --- stdout ---\n\n[process 8723]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-load-exports.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17635,7 +17526,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rr ---\nSyntaxError: Export named 'add' not found in module '/test/fixtures/es-modules/simple.wasm'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 70638]: --- stdout ---\n\n[process 70638]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/fixtures/es-modules/wasm-modules.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "derr ---\nSyntaxError: Export named 'add' not found in module '/test/fixtures/es-modules/simple.wasm'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 8724]: --- stdout ---\n\n[process 8724]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/fixtures/es-modules/wasm-modules.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17666,7 +17557,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Bun v1.4.0 (macOS arm64)\n\n[process 86073]: --- stdout ---\n\n[process 86073]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/export-name-code-injection.wasm\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " at /test/fixtures/es-modules/export-name-code-injection.wasm:47:56\n\nBun v1.4.0 (macOS arm64)\n\n[process 8732]: --- stdout ---\n\n[process 8732]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/export-name-code-injection.wasm\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17695,7 +17586,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "1.4.0 (macOS arm64)\n\n[process 86108]: --- stdout ---\n\n[process 86108]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-non-identifier-exports.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " /test/fixtures/es-modules/test-wasm-non-identifier-exports.mjs:5:1\n\nBun v1.4.0 (macOS arm64)\n\n[process 8731]: --- stdout ---\n\n[process 8731]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-non-identifier-exports.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17724,7 +17615,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "]: --- stderr ---\n\n[process 86118]: --- stdout ---\n\n[process 86118]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-export-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8733]: --- stderr ---\n\n[process 8733]: --- stdout ---\n\n[process 8733]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-export-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17755,7 +17646,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "]: --- stderr ---\n\n[process 86126]: --- stdout ---\n\n[process 86126]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-import-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8741]: --- stderr ---\n\n[process 8741]: --- stdout ---\n\n[process 8741]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-import-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17786,7 +17677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "--- stderr ---\n\n[process 86147]: --- stdout ---\n\n[process 86147]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-js-export-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8740]: --- stderr ---\n\n[process 8740]: --- stdout ---\n\n[process 8740]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-js-export-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17817,7 +17708,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-- stderr ---\n\n[process 86148]: --- stdout ---\n\n[process 86148]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-js-import-module.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8746]: --- stderr ---\n\n[process 8746]: --- stdout ---\n\n[process 8746]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-js-import-module.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17848,7 +17739,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "--- stderr ---\n\n[process 86185]: --- stdout ---\n\n[process 86185]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-js-import-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8747]: --- stderr ---\n\n[process 8747]: --- stdout ---\n\n[process 8747]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-reject-wasm-js-import-names.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17879,7 +17770,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " v1.4.0 (macOS arm64)\n\n[process 86194]: --- stdout ---\n\n[process 86194]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ound \"mod\"\n at /test/fixtures/es-modules/wasm-source-phase.js:1:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 8749]: --- stdout ---\n\n[process 8749]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17908,7 +17799,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "v1.4.0 (macOS arm64)\n\n[process 86202]: --- stdout ---\n\n[process 86202]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-identity.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "t /test/fixtures/es-modules/test-wasm-source-phase-identity.mjs:4:55\n\nBun v1.4.0 (macOS arm64)\n\n[process 8754]: --- stdout ---\n\n[process 8754]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-identity.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17937,7 +17828,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cOS arm64)\n\n[process 86223]: --- stdout ---\n\n[process 86223]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-no-execute-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ures/es-modules/test-wasm-source-phase-no-execute-dynamic.mjs:6:37\n\nBun v1.4.0 (macOS arm64)\n\n[process 8756]: --- stdout ---\n\n[process 8756]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-no-execute-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17968,7 +17859,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".4.0 (macOS arm64)\n\n[process 86224]: --- stdout ---\n\n[process 86224]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-no-execute.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/fixtures/es-modules/test-wasm-source-phase-no-execute.mjs:5:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 8762]: --- stdout ---\n\n[process 8762]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-no-execute.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -17997,7 +17888,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "OS arm64)\n\n[process 86258]: --- stdout ---\n\n[process 86258]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-not-defined-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "es/es-modules/test-wasm-source-phase-not-defined-dynamic.mjs:12:3\n\nBun v1.4.0 (macOS arm64)\n\n[process 8763]: --- stdout ---\n\n[process 8763]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-not-defined-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18059,7 +17950,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "n v1.4.0 (macOS arm64)\n\n[process 86274]: --- stdout ---\n\n[process 86274]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-static.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "found \"mod\"\n at /test/fixtures/es-modules/wasm-source-phase.js:1:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 8769]: --- stdout ---\n\n[process 8769]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/test-wasm-source-phase-static.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18088,7 +17979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "wasm:47:56\n\nBun v1.4.0 (macOS arm64)\n\n[process 86295]: --- stdout ---\n\n[process 86295]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/top-level-wasm.wasm\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "rts (node:wasi:1053:24)\n at /test/fixtures/es-modules/top-level-wasm.wasm:47:56\n\nBun v1.4.0 (macOS arm64)\n\n[process 8770]: --- stdout ---\n\n[process 8770]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/es-modules/top-level-wasm.wasm\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18119,7 +18010,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cess 86294]: status = 1, signal = null\nerror: - stderr did not match /Source phase import object is not defined for module/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-vm-modules /test/fixtures/es-modules/test-wasm-vm-source-phase-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " (node:vm:229:52)\n\nBun v1.4.0 (macOS arm64)\n\n[process 8773]: --- stdout ---\n\n[process 8773]: status = 1, signal = null\nerror: - stderr did not match /Source phase import object is not defined for module/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-vm-modules /test/fixtures/es-modules/test-wasm-vm-source-phase-dynamic.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18150,7 +18041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 86329]: status = 1, signal = null\nerror: - stderr did not match /Source phase import object is not defined for module/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-vm-modules /test/fixtures/es-modules/test-wasm-vm-source-phase-static.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "e (node:vm:229:52)\n\nBun v1.4.0 (macOS arm64)\n\n[process 8777]: --- stdout ---\n\n[process 8777]: status = 1, signal = null\nerror: - stderr did not match /Source phase import object is not defined for module/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-vm-modules /test/fixtures/es-modules/test-wasm-vm-source-phase-static.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18208,7 +18099,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-- stderr ---\n\n[process 86353]: --- stdout ---\nscript STARTED\nv26.3.0\n\n[process 86353]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/fixtures/es-modules/extensionless-esm-commonjs/script\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8780]: --- stderr ---\n\n[process 8780]: --- stdout ---\nscript STARTED\nv26.3.0\n\n[process 8780]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/fixtures/es-modules/extensionless-esm-commonjs/script\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18324,7 +18215,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --import file:///test/fixtures/import-require-cycle/preload.mjs /test/fixtures/import-require-cycle/c.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "es/import-require-cycle/preload.mjs:3:5\n\nBun v1.4.0 (macOS arm64)\n\n[process 8792]: --- stdout ---\n\n[process 8792]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --import file:///test/fixtures/import-require-cycle/preload.mjs /test/fixtures/import-require-cycle/c.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18353,7 +18244,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --import file:///test/fixtures/es-modules/import-require-tla-twice/hook.js /test/fixtures/es-modules/import-require-tla-twice/require-tla.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ":1)\n\nBun v1.4.0 (macOS arm64)\n\n[process 8794]: --- stdout ---\n\n[process 8794]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --import file:///test/fixtures/es-modules/import-require-tla-twice/hook.js /test/fixtures/es-modules/import-require-tla-twice/require-tla.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18384,7 +18275,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n at (/test/es-module/test-loaders-hidden-from-users.js:9:9)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/es-module/test-loaders-hidden-from-users.js:8:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/bootstrap/realm.js:71:5)\n at (/test/es-module/test-loaders-hidden-from-users.js:9:9)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/es-module/test-loaders-hidden-from-users.js:8:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18442,7 +18333,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "6 | \n7 | describe('Worker threads do not spawn infinitely', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-loaders-workers-spawned.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " at /test/es-module/test-loaders-workers-spawned.mjs:79:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) Worker threads do not spawn infinitely > should support --require and --import along with using a loader written in ESM and ESM entry point [12.91ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [184.00ms]", "retried": true }, "deno": { @@ -18473,7 +18364,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fault'\n- {\n- default: 'faux esm default'\n- }\n\n generatedMessage: true,\n actual: \"faux esm default\",\n expected: {\n default: \"faux esm default\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-as-esm-interop.mjs:34:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "s to be strictly deep-equal:\n+ actual - expected\n\n+ 'faux esm default'\n- {\n- default: 'faux esm default'\n- }\n\n generatedMessage: true,\n actual: \"faux esm default\",\n expected: {\n default: \"faux esm default\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-as-esm-interop.mjs:34:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18502,7 +18393,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ess 70666]: --- stdout ---\n\n[process 70666]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module --import file:///test/fixtures/es-modules/require-esm-in-cjs-cache/instrument-sync.js /test/fixtures/es-modules/require-esm-in-cjs-cache/app.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ocess 8798]: --- stdout ---\n\n[process 8798]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module --import file:///test/fixtures/es-modules/require-esm-in-cjs-cache/instrument-sync.js /test/fixtures/es-modules/require-esm-in-cjs-cache/app.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18564,7 +18455,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ues to be strictly equal:\n+ actual - expected\n\n+ 'require'\n- 'module'\n\n generatedMessage: true,\n actual: \"require\",\n expected: \"module\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-conditional-exports-module.js:9:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ").resolved, 'module');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'require'\n- 'module'\n\n generatedMessage: true,\n actual: \"require\",\n expected: \"module\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-conditional-exports-module.js:9:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18649,7 +18540,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "- stderr ---\n\n[process 86557]: --- stdout ---\n\n[process 86557]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module /test/fixtures/es-modules/esm-cjs-esm-esm-cycle/a.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8813]: --- stderr ---\n\n[process 8813]: --- stdout ---\n\n[process 8813]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module /test/fixtures/es-modules/esm-cjs-esm-esm-cycle/a.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18680,7 +18571,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".cjs undefined\nimport b.cjs from a.mjs {}\n\n[process 86585]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module /test/fixtures/es-modules/esm-cjs-esm-cycle/require-a.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8817]: --- stderr ---\n\n[process 8817]: --- stdout ---\nrequire a.mjs in b.cjs undefined\nimport b.cjs from a.mjs {}\n\n[process 8817]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module /test/fixtures/es-modules/esm-cjs-esm-cycle/require-a.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18711,7 +18602,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "derr ---\n\n[process 86604]: --- stdout ---\n\n[process 86604]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module /test/fixtures/es-modules/esm-esm-cjs-esm-esm-cycle/a.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8819]: --- stderr ---\n\n[process 8819]: --- stdout ---\n\n[process 8819]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module /test/fixtures/es-modules/esm-esm-cjs-esm-esm-cycle/a.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18773,7 +18664,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "{\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"MODULE_NOT_FOUND\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-default-extension.js:10:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "edModule(mod, { entry: 'mjs' });\n 9 | \n10 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"MODULE_NOT_FOUND\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-default-extension.js:10:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18885,7 +18776,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n message: /Unexpected token 'export'/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-dont-detect-cjs.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssert = require('assert');\n6 | \n7 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n message: /Unexpected token 'export'/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-dont-detect-cjs.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -18914,7 +18805,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "orld\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/es-module/test-require-module-dynamic-import-1.js:31:18)\n\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.", + "tail": "world\nworld\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/es-module/test-require-module-dynamic-import-1.js:31:18)\n\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.", "retried": true }, "deno": { @@ -18945,7 +18836,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "2 | const required = require(id);\n ^\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.\n at (/test/es-module/test-require-module-dynamic-import-2.js:22:22)", + "tail": "odule/index.js',\n19 | ];\n20 | for (const id of modules) {\n21 | const url = pathToFileURL(path.resolve(__dirname, id));\n22 | const required = require(id);\n ^\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.\n at (/test/es-module/test-require-module-dynamic-import-2.js:22:22)", "retried": true }, "deno": { @@ -19030,7 +18921,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ous (unknown:1:1)\n at /test/es-module/test-require-module-error-catching.js:16:21\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/es-module/test-require-module-error-catching.js:16:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "const variable twice: 'require'.\n at (/test/fixtures/es-modules/reference-error-esm.js:4:1)\n at anonymous (unknown:1:1)\n at /test/es-module/test-require-module-error-catching.js:16:21\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/es-module/test-require-module-error-catching.js:16:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19061,7 +18952,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/es-module/test-require-module-errors.js:9:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " --experimental-require-module /test/fixtures/es-modules/require-syntax-error.cjs\",\n\n at stderr (/test/es-module/test-require-module-errors.js:17:12)\n at checkOutput (/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/es-module/test-require-module-errors.js:9:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19092,7 +18983,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 86741]: --- stderr ---\n\n[process 86741]: --- stdout ---\ntrue\n\n[process 86741]: status = 0, signal = null\nerror: - stdout did not match 'false'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-experimental-require-module -p process.features.require_module\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8845]: --- stderr ---\n\n[process 8845]: --- stdout ---\ntrue\n\n[process 8845]: status = 0, signal = null\nerror: - stdout did not match 'false'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-experimental-require-module -p process.features.require_module\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19123,7 +19014,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"MODULE_NOT_FOUND\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-implicit.js:12:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "xtures/es-modules/should-not-be-resolved';\n12 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"MODULE_NOT_FOUND\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-implicit.js:12:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19159,7 +19050,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "^\nTypeError: require() async module \"/test/fixtures/es-modules/require-module-instantiated/c.mjs\" is unsupported. use \"await import()\" instead.\n at (/test/fixtures/es-modules/require-module-instantiated/b.cjs:1:8)\n\nBun v1.4.0 (macOS arm64)" + "tail": "1 | module.exports = require('./c.mjs');\n ^\nTypeError: require() async module \"/test/fixtures/es-modules/require-module-instantiated/c.mjs\" is unsupported. use \"await import()\" instead.\n at (/test/fixtures/es-modules/require-module-instantiated/b.cjs:1:8)\n\nBun v1.4.0 (macOS arm64)" } }, "deno": { @@ -19188,7 +19079,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "dout ---\n\n[process 86807]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module --require ./es-modules/cjs-exports.mjs ./printA.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "/es-modules/exports-cases2.js'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 8854]: --- stdout ---\n\n[process 8854]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-require-module --require ./es-modules/cjs-exports.mjs ./printA.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19248,7 +19139,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (/test/es-module/test-require-module-retry-import-errored.js:9:21)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/es-module/test-require-module-retry-import-errored.js:9:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/fixtures/es-modules/tla/await-export-promise.mjs\" is unsupported. use \"await import()\" instead.\n at (/test/es-module/test-require-module-retry-import-errored.js:9:21)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/es-module/test-require-module-retry-import-errored.js:9:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19370,7 +19261,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | \n11 | describe('require(esm) with top-level await and --experimental-print-required-tla', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/es-module/test-require-module-tla-error-snapshot.mjs:11:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at /test/es-module/test-require-module-tla-error-snapshot.mjs:31:22\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) require(esm) with top-level await and --experimental-print-required-tla > es-modules/tla/require-indented.js [14.12ms]", "retried": true }, "deno": { @@ -19403,7 +19294,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 86840]: --- stderr ---\nI am executed\n\n[process 86840]: --- stdout ---\n\n[process 86840]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/fixtures/es-modules/tla/require-execution.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8856]: --- stderr ---\nI am executed\n\n[process 8856]: --- stdout ---\n\n[process 8856]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/fixtures/es-modules/tla/require-execution.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19498,7 +19389,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "am executed\n\n[process 86854]: --- stdout ---\n\n[process 86854]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-print-required-tla /test/fixtures/es-modules/tla/require-execution.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8860]: --- stderr ---\nI am executed\n\n[process 8860]: --- stdout ---\n\n[process 8860]: status = 0, signal = null\nerror: - process terminated with status 0, expected 1\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-print-required-tla /test/fixtures/es-modules/tla/require-execution.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19562,7 +19453,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | \n8 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-tla-resolved.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " = require('../common');\n6 | const assert = require('assert');\n7 | \n8 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-tla-resolved.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19593,7 +19484,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ASYNC_MODULE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/es-module/test-require-module-tla-retry-import-2.js:18:10)", + "tail": "ssert.strictEqual(ns.hello, 'world');\n17 | \n18 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ASYNC_MODULE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/es-module/test-require-module-tla-retry-import-2.js:18:10)", "retried": true }, "deno": { @@ -19622,7 +19513,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e: \"ERR_REQUIRE_ASYNC_MODULE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/es-module/test-require-module-tla-retry-import.js:9:10)\n at /test/es-module/test-require-module-tla-retry-import.js:25:1", + "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ASYNC_MODULE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/es-module/test-require-module-tla-retry-import.js:9:10)\n at /test/es-module/test-require-module-tla-retry-import.js:25:1", "retried": true }, "deno": { @@ -19651,7 +19542,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ASYNC_MODULE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-tla-retry-require.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert = require('assert');\n6 | \n7 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_REQUIRE_ASYNC_MODULE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/es-module/test-require-module-tla-retry-require.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19738,7 +19629,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " const first = require(id);\n ^\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.\n at (/test/es-module/test-require-module-twice.js:17:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "/index.mjs',\n13 | '../fixtures/es-modules/package-type-module/index.js',\n14 | ];\n15 | \n16 | for (const id of modules) {\n17 | const first = require(id);\n ^\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.\n at (/test/es-module/test-require-module-twice.js:17:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19771,7 +19662,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/es-module/test-require-module-warning.js:9:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "warnings --trace-require-module=all /test/fixtures/es-modules/require-module.js\",\n\n at stderr (/test/es-module/test-require-module-warning.js:17:12)\n at checkOutput (/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/es-module/test-require-module-warning.js:9:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19829,7 +19720,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "'../fixtures/es-modules/cjs-exports.mjs');\n ^\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.\n at (/test/es-module/test-require-module.js:21:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "expectRequiredModule(mod, { hello: 'world' });\n17 | }\n18 | \n19 | // Test ESM that import CJS.\n20 | {\n21 | const mod = require('../fixtures/es-modules/cjs-exports.mjs');\n ^\nSyntaxError: Export named '__esModule' not found in module '/test/fixtures/es-modules/exports-cases2.js'.\n at (/test/es-module/test-require-module.js:21:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19862,7 +19753,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "--\nworld\n\n[process 87060]: status = 0, signal = null\nerror: - stderr did not match /Support for loading ES Module in require\\(\\)/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --trace-require-module=no-node-modules /test/fixtures/es-modules/test_node_modules/require-esm.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8880]: --- stderr ---\n\n[process 8880]: --- stdout ---\nworld\n\n[process 8880]: status = 0, signal = null\nerror: - stderr did not match /Support for loading ES Module in require\\(\\)/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --trace-require-module=no-node-modules /test/fixtures/es-modules/test_node_modules/require-esm.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19975,11 +19866,9 @@ "retried": true }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "mjs';\n3 | import assert from 'node:assert';\n4 | import { test } from 'node:test';\n5 | \n6 | test('expect process.features.typescript to be false when --no-experimental-strip-types ', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/es-module/test-typescript.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -20123,7 +20012,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/es-module/test-vm-main-context-default-loader.js:23:8)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/es-module/test-vm-main-context-default-loader.js:119:20)\n\nerror: Cannot find module './message.mjs' from '/file:///test/.tmp.28/index.js?t=1'", + "tail": "l 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/es-module/test-vm-main-context-default-loader.js:23:8)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/es-module/test-vm-main-context-default-loader.js:119:20)\n\nerror: Cannot find module './message.mjs' from '/file:///test/.tmp.410/index.js?t=1'", "retried": true }, "deno": { @@ -20154,7 +20043,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or: queryObjects is not a function. (In 'queryObjects(ctor, { format: \"count\" })', 'queryObjects' is undefined)\n at checkIfCollectableByCounting (/test/common/gc.js:152:24)\n at (/test/es-module/test-vm-source-text-module-leak.js:13:1)", + "tail": "st { name } = ctor;\n152 | const initialCount = queryObjects(ctor, { format: 'count' });\n ^\nTypeError: queryObjects is not a function. (In 'queryObjects(ctor, { format: \"count\" })', 'queryObjects' is undefined)\n at checkIfCollectableByCounting (/test/common/gc.js:152:24)\n at (/test/es-module/test-vm-source-text-module-leak.js:13:1)", "retried": true }, "deno": { @@ -20210,7 +20099,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ll((results) => {\n 9 | assert.throws(() => {\n10 | results.instance.exports._start();\n11 | }, WebAssembly.RuntimeError('memory access out of bounds'));\n ^\nRuntimeError: memory access out of bounds\n at (/test/es-module/test-wasm-memory-out-of-bound.js:11:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": "m');\n 8 | WebAssembly.instantiate(buffer, {}).then(common.mustCall((results) => {\n 9 | assert.throws(() => {\n10 | results.instance.exports._start();\n11 | }, WebAssembly.RuntimeError('memory access out of bounds'));\n ^\nRuntimeError: memory access out of bounds\n at (/test/es-module/test-wasm-memory-out-of-bound.js:11:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -20680,7 +20569,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at handleExit (/test/internet/test-corepack-yarn-install.js:61:10)\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Equal\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at handleExit (/test/internet/test-corepack-yarn-install.js:61:10)\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -20767,7 +20656,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ulticast address should not throw\n11 | {\n12 | const socket = setup();\n13 | socket.addMembership(multicastAddress);\n ^\nerror: Not running\n code: \"ERR_SOCKET_DGRAM_NOT_RUNNING\"\n\n at (node:dgram:758:29)\n at (/test/internet/test-dgram-membership.js:13:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": true });\n 9 | \n10 | // addMembership() with valid socket and multicast address should not throw\n11 | {\n12 | const socket = setup();\n13 | socket.addMembership(multicastAddress);\n ^\nerror: Not running\n code: \"ERR_SOCKET_DGRAM_NOT_RUNNING\"\n\n at (node:dgram:758:29)\n at (/test/internet/test-dgram-membership.js:13:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -20916,7 +20805,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkWrap (/test/internet/test-dns-any.js:19:10)\n at test_google_for_cname_and_srv (/test/internet/test-dns-any.js:156:3)\n at processTicksAndRejections (native:7:39)", + "tail": "eq === 'object');\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkWrap (/test/internet/test-dns-any.js:19:10)\n at test_google_for_cname_and_srv (/test/internet/test-dns-any.js:156:3)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -20945,7 +20834,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-dns-cares-domains.js:23:9)\n at (node:domain:47:23)\n at (/test/internet/test-dns-cares-domains.js:22:5)\n at forEach (1:11)\n at (/test/internet/test-dns-cares-domains.js:20:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": " 'dns[method]' is undefined)\n domainEmitter: undefined,\n domainThrown: false,\n\n at (/test/internet/test-dns-cares-domains.js:23:9)\n at (node:domain:47:23)\n at (/test/internet/test-dns-cares-domains.js:22:5)\n at forEach (1:11)\n at (/test/internet/test-dns-cares-domains.js:20:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21032,7 +20921,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkWrap (/test/internet/test-dns-ipv4.js:39:10)\n at test_reverse_ipv4 (/test/internet/test-dns-ipv4.js:82:3)\n at processTicksAndRejections (native:7:39)", + "tail": "ok(typeof req === 'object');\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkWrap (/test/internet/test-dns-ipv4.js:39:10)\n at test_reverse_ipv4 (/test/internet/test-dns-ipv4.js:82:3)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -21061,7 +20950,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkWrap (/test/internet/test-dns-ipv6.js:39:10)\n at test_reverse_ipv6 (/test/internet/test-dns-ipv6.js:81:3)\n at processTicksAndRejections (native:7:39)", + "tail": "ok(typeof req === 'object');\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkWrap (/test/internet/test-dns-ipv6.js:39:10)\n at test_reverse_ipv6 (/test/internet/test-dns-ipv6.js:81:3)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -21119,7 +21008,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": A, AAAA, ANY, CAA, CNAME, MX, NS, PTR, SOA, SRV, TXT, received type string ('DUMMY')\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at resolve (node:dns:506:46)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/internet/test-dns-promises-resolve.js:10:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: The property \"record\" is invalid. Expected one of: A, AAAA, ANY, CAA, CNAME, MX, NS, PTR, SOA, SRV, TXT, received type string ('DUMMY')\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at resolve (node:dns:506:46)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/internet/test-dns-promises-resolve.js:10:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21202,7 +21091,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "dnsPromises.resolveTxt('www.microsoft.com');\n ^\nDNSException: queryTxt ENOTFOUND www.microsoft.com\n syscall: \"queryTxt\",\n hostname: \"www.microsoft.com\",\n errno: 4,\n code: \"ENOTFOUND\"\n\n at async (/test/internet/test-dns-txt-sigsegv.js:8:36)\n\nBun v1.4.0 (macOS arm64)", + "tail": "omises;\n6 | \n7 | (async function() {\n8 | const result = await dnsPromises.resolveTxt('www.microsoft.com');\n ^\nDNSException: queryTxt ENOTFOUND www.microsoft.com\n syscall: \"queryTxt\",\n hostname: \"www.microsoft.com\",\n errno: 4,\n code: \"ENOTFOUND\"\n\n at async (/test/internet/test-dns-txt-sigsegv.js:8:36)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21403,7 +21292,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " child.stderr.toString();\n14 | const helpUrl = stderr.match(/For help, see: (.+)/)[1];\n ^\nTypeError: null is not an object (evaluating 'stderr.match(/For help, see: (.+)/)[1]')\n at (/test/internet/test-inspector-help-page.js:14:51)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rocess.execPath, ['--inspect', '-e', '\"\"']);\n13 | const stderr = child.stderr.toString();\n14 | const helpUrl = stderr.match(/For help, see: (.+)/)[1];\n ^\nTypeError: null is not an object (evaluating 'stderr.match(/For help, see: (.+)/)[1]')\n at (/test/internet/test-inspector-help-page.js:14:51)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21440,7 +21329,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "erFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/internet/test-net-autoselectfamily-events-failure.js:91:12)\n at emit (node:events:106:22)\n at internalConnectMultiple (node:net:1774:12)\n at internalConnectMultipleTimeout (node:net:1797:28)\n\nBun v1.4.0 (macOS arm64)", + "tail": "l - expected\n\n+ '8.8.8.8'\n- '2001:4860:4860::8888'\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/internet/test-net-autoselectfamily-events-failure.js:91:12)\n at emit (node:events:106:22)\n at internalConnectMultiple (node:net:1774:12)\n at internalConnectMultipleTimeout (node:net:1797:28)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21738,7 +21627,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ") => trace.cat !== '__metadata');\n67 | \n68 | assert(traces.length > 0);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/internet/test-trace-events-dns.js:68:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "N.parse(data.toString()).traceEvents\n66 | .filter((trace) => trace.cat !== '__metadata');\n67 | \n68 | assert(traces.length > 0);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/internet/test-trace-events-dns.js:68:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21802,7 +21691,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "strictly equal:\n+ actual - expected\n\n+ undefined\n- 'A_SET_ENV_VAR_VALUE'\n\n generatedMessage: true,\n actual: undefined,\n expected: \"A_SET_ENV_VAR_VALUE\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/message/test-testpy-env-var-via-comment.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "AR_VALUE');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- 'A_SET_ENV_VAR_VALUE'\n\n generatedMessage: true,\n actual: undefined,\n expected: \"A_SET_ENV_VAR_VALUE\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/message/test-testpy-env-var-via-comment.js:12:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21837,7 +21726,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/hooks-input.mjs /test/fixtures/es-modules/json-modules.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "/es-module-loaders/hooks-input.mjs\"\n\n[process 8969]: --- stdout ---\n\n[process 8969]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/hooks-input.mjs /test/fixtures/es-modules/json-modules.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21901,7 +21790,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-loader file:///test/fixtures/es-module-loaders/loader-globalpreload-and-initialize.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ers/loader-globalpreload-and-initialize.mjs\"\n\n[process 8973]: --- stdout ---\n\n[process 8973]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-loader file:///test/fixtures/es-module-loaders/loader-globalpreload-and-initialize.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21961,7 +21850,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 88061]: status = 0, signal = null\nerror: - stdout did not match 'hooks initialize 1\\nresult 1 undefined\\nhooks initialize 2\\nresult 2 undefined'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/module-hooks/register-loader-in-sequence.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "tderr ---\n\n[process 8977]: --- stdout ---\nresult 1 undefined\nresult 2 undefined\n\n[process 8977]: status = 0, signal = null\nerror: - stdout did not match 'hooks initialize 1\\nresult 1 undefined\\nhooks initialize 2\\nresult 2 undefined'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/module-hooks/register-loader-in-sequence.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -21992,7 +21881,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rs/hooks-initialize.mjs\"\n\n[process 53295]: --- stdout ---\n\n[process 53295]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/hooks-initialize.mjs --input-type=module --eval import os from \\\"node:os\\\";\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ders/hooks-initialize.mjs\"\n\n[process 8978]: --- stdout ---\n\n[process 8978]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/hooks-initialize.mjs --input-type=module --eval import os from \\\"node:os\\\";\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22023,7 +21912,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "]: --- stdout ---\n\n[process 88088]: status = 0, signal = null\nerror: - stdout did not match 'caught ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/module-hooks/register-loader-initialize-never-settling.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 8981]: --- stderr ---\n\n[process 8981]: --- stdout ---\n\n[process 8981]: status = 0, signal = null\nerror: - stdout did not match 'caught ERR_ASYNC_LOADER_REQUEST_NEVER_SETTLED'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings /test/fixtures/module-hooks/register-loader-initialize-never-settling.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22054,7 +21943,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "oader-initialize-exit.mjs\"\n\n[process 70805]: --- stdout ---\n\n[process 70805]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-initialize-exit.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "/loader-initialize-exit.mjs\"\n\n[process 8982]: --- stdout ---\n\n[process 8982]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-initialize-exit.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22085,7 +21974,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "loader-initialize-rejecting.mjs\"\n\n[process 53304]: --- stdout ---\n\n[process 53304]: status = 1, signal = null\nerror: - stderr did not match /undefined$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-initialize-rejecting.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "s/loader-initialize-rejecting.mjs\"\n\n[process 8985]: --- stdout ---\n\n[process 8985]: status = 1, signal = null\nerror: - stderr did not match /undefined$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-initialize-rejecting.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22116,7 +22005,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rs/loader-initialize-throw-null.mjs\"\n\n[process 53336]: --- stdout ---\n\n[process 53336]: status = 1, signal = null\nerror: - stderr did not match /null$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-initialize-throw-null.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ders/loader-initialize-throw-null.mjs\"\n\n[process 8986]: --- stdout ---\n\n[process 8986]: status = 1, signal = null\nerror: - stderr did not match /null$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-initialize-throw-null.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22147,7 +22036,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "corpus>/test/fixtures/es-module-loaders/loader-mixed-opt-in.mjs\"\n\n[process 53343]: --- stdout ---\n\n[process 53343]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-mixed-opt-in.mjs entry-point\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "//test/fixtures/es-module-loaders/loader-mixed-opt-in.mjs\"\n\n[process 8989]: --- stdout ---\n\n[process 8989]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-mixed-opt-in.mjs entry-point\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22178,7 +22067,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/import.meta.never-resolve.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "rocess 8990]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/import.meta.never-resolve.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22209,7 +22098,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-load.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " stdout ---\n\n[process 8993]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-load.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22240,7 +22129,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-load.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "stdout ---\n\n[process 8994]: status = 1, signal = null\nerror: - process terminated with status 1, expected 13\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-load.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22271,7 +22160,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "inmcd94/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-load.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ss 8998]: --- stdout ---\n\n[process 8998]: status = 1, signal = null\nerror: - process terminated with status 1, expected 13\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-load.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22302,7 +22191,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/race.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "]: --- stdout ---\n\n[process 8999]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/race.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22331,7 +22220,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/race.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "]: --- stdout ---\n\n[process 9002]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/race.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22360,7 +22249,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "b/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-resolve.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "dout ---\n\n[process 9004]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-resolve.cjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22391,7 +22280,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "b/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-resolve.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "out ---\n\n[process 9005]: status = 1, signal = null\nerror: - process terminated with status 1, expected 13\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-resolve.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22422,7 +22311,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cd94/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-resolve.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "9008]: --- stdout ---\n\n[process 9008]: status = 1, signal = null\nerror: - process terminated with status 1, expected 13\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-loader file:///test/fixtures/es-module-loaders/never-settling-resolve-step/loader.mjs /test/fixtures/es-module-loaders/never-settling-resolve-step/never-resolve.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22453,7 +22342,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "minated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-edge-cases.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ixtures/es-module-loaders/loader-edge-cases.mjs\"\n\n[process 9010]: --- stdout ---\n\n[process 9010]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-edge-cases.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22484,7 +22373,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rs/loader-exit-on-load.mjs\"\n\n[process 53454]: --- stdout ---\n\n[process 53454]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-exit-on-load.mjs --input-type=module --eval import \\\"data:exit\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ders/loader-exit-on-load.mjs\"\n\n[process 9011]: --- stdout ---\n\n[process 9011]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-exit-on-load.mjs --input-type=module --eval import \\\"data:exit\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22515,7 +22404,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-- stdout ---\n\n[process 53457]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-exit-on-resolve.mjs --input-type=module --eval import \\\"data:text/javascript,import.meta.resolve(%22exit:%22)\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "--- stdout ---\n\n[process 9014]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-exit-on-resolve.mjs --input-type=module --eval import \\\"data:text/javascript,import.meta.resolve(%22exit:%22)\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22546,7 +22435,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-exit-top-level.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "s-module-loaders/loader-exit-top-level.mjs\"\n\n[process 9017]: --- stdout ---\n\n[process 9017]: status = 1, signal = null\nerror: - process terminated with status 1, expected 42\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-exit-top-level.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22577,7 +22466,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (/test/common/child_process.js:129:32)\n at /test/module-hooks/test-async-loader-hooks-register-with-cjs.mjs:8 {\n generatedMessage: true,\n actual: [Array],\n expected: [Array],\n operator: 'deepStrictEqual',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "-loader-hooks-register-with-cjs.mjs:16:14)\n at checkOutput (/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:129:32)\n at /test/module-hooks/test-async-loader-hooks-register-with-cjs.mjs:8 {\n generatedMessage: true,\n actual: [Array],\n expected: [Array],\n operator: 'deepStrictEqual',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -22608,7 +22497,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 53493]: --- stderr ---\n\n[process 53493]: --- stdout ---\n\n[process 53493]: status = 0, signal = null\nerror: - stdout did not match 'resolve passthru'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --import file:///test/fixtures/es-module-loaders/register-loader.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 9020]: --- stderr ---\n\n[process 9020]: --- stdout ---\n\n[process 9020]: status = 0, signal = null\nerror: - stdout did not match 'resolve passthru'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --import file:///test/fixtures/es-module-loaders/register-loader.mjs --input-type=module --eval import \\\"node:os\\\"\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22670,7 +22559,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 53494]: --- stderr ---\n\n[process 53494]: --- stdout ---\n\n[process 53494]: status = 0, signal = null\nerror: - stdout did not match 'resolve passthru\\nresolve passthru'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --require /test/fixtures/es-module-loaders/register-loader.cjs --input-type=module --eval import \\\"node:os\\\";\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 9023]: --- stderr ---\n\n[process 9023]: --- stdout ---\n\n[process 9023]: status = 0, signal = null\nerror: - stdout did not match 'resolve passthru\\nresolve passthru'\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --require /test/fixtures/es-module-loaders/register-loader.cjs --input-type=module --eval import \\\"node:os\\\";\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22763,7 +22652,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tus 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-resolve-passthru.mjs /test/fixtures/require-resolve.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ers/loader-resolve-passthru.mjs\"\n\n[process 9030]: --- stdout ---\n\n[process 9030]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-resolve-passthru.mjs /test/fixtures/require-resolve.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22825,7 +22714,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " arm64)\n\n[process 70831]: --- stdout ---\n\n[process 70831]: status = 1, signal = null\nerror: - stderr did not match /throw-on-require\\.ts:9:9/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --enable-source-maps --import file:///test/fixtures/es-module-loaders/loader-load-source-maps.mjs /test/fixtures/source-map/throw-on-require.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "OS arm64)\n\n[process 9040]: --- stdout ---\n\n[process 9040]: status = 1, signal = null\nerror: - stderr did not match /throw-on-require\\.ts:9:9/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --enable-source-maps --import file:///test/fixtures/es-module-loaders/loader-load-source-maps.mjs /test/fixtures/source-map/throw-on-require.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22856,7 +22745,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": - stderr did not match /^1$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-bigint.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/fixtures/es-module-loaders/loader-throw-bigint.mjs\"\n\n[process 9041]: --- stdout ---\n\n[process 9041]: status = 1, signal = null\nerror: - stderr did not match /^1$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-bigint.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22887,7 +22776,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "stderr did not match /^true$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-boolean.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ">/test/fixtures/es-module-loaders/loader-throw-boolean.mjs\"\n\n[process 9043]: --- stdout ---\n\n[process 9043]: status = 1, signal = null\nerror: - stderr did not match /^true$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-boolean.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22918,7 +22807,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r did not match /^\\{\\}$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-empty-object.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "tures/es-module-loaders/loader-throw-empty-object.mjs\"\n\n[process 9046]: --- stdout ---\n\n[process 9046]: status = 1, signal = null\nerror: - stderr did not match /^\\{\\}$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-empty-object.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22949,7 +22838,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " match /^Error: error message$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-error.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "res/es-module-loaders/loader-throw-error.mjs\"\n\n[process 9047]: --- stdout ---\n\n[process 9047]: status = 1, signal = null\nerror: - stderr did not match /^Error: error message$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-error.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -22980,7 +22869,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tch /^\\[Function: fnName\\]$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-function.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "-module-loaders/loader-throw-function.mjs\"\n\n[process 9049]: --- stdout ---\n\n[process 9049]: status = 1, signal = null\nerror: - stderr did not match /^\\[Function: fnName\\]$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-function.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23011,7 +22900,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " - stderr did not match /^null$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-null.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "corpus>/test/fixtures/es-module-loaders/loader-throw-null.mjs\"\n\n[process 9052]: --- stdout ---\n\n[process 9052]: status = 1, signal = null\nerror: - stderr did not match /^null$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-null.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23042,7 +22931,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": - stderr did not match /^1$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-number.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/fixtures/es-module-loaders/loader-throw-number.mjs\"\n\n[process 9053]: --- stdout ---\n\n[process 9053]: status = 1, signal = null\nerror: - stderr did not match /^1$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-number.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23073,7 +22962,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "l\\(symbol\\), u: undefined \\}$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-object.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 9054]: --- stdout ---\n\n[process 9054]: status = 1, signal = null\nerror: - stderr did not match /^\\{ fn: \\[Function: fn\\], symbol: Symbol\\(symbol\\), u: undefined \\}$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-object.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23104,7 +22993,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d not match /^literal string$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-string.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ixtures/es-module-loaders/loader-throw-string.mjs\"\n\n[process 9058]: --- stdout ---\n\n[process 9058]: status = 1, signal = null\nerror: - stderr did not match /^literal string$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-string.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23164,7 +23053,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "did not match /^undefined$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-undefined.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "xtures/es-module-loaders/loader-throw-undefined.mjs\"\n\n[process 9060]: --- stdout ---\n\n[process 9060]: status = 1, signal = null\nerror: - stderr did not match /^undefined$/m\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --experimental-loader file:///test/fixtures/es-module-loaders/loader-throw-undefined.mjs /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23195,7 +23084,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-deprecation --no-experimental-require-module --import file:///test/fixtures/es-module-loaders/builtin-named-exports.mjs /test/fixtures/es-modules/require-esm-throws-with-loaders.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ": --- stdout ---\n\n[process 9064]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-deprecation --no-experimental-require-module --import file:///test/fixtures/es-module-loaders/builtin-named-exports.mjs /test/fixtures/es-modules/require-esm-throws-with-loaders.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23226,7 +23115,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cross-runtime/bun-1.4.0/bin/bun --no-warnings --permission --allow-worker --allow-fs-read * --experimental-loader file:///test/fixtures/es-module-loaders/loader-worker-spawn.mjs /test/fixtures/es-modules/esm-top-level-await.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ut ---\n\n[process 9065]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --permission --allow-worker --allow-fs-read * --experimental-loader file:///test/fixtures/es-module-loaders/loader-worker-spawn.mjs /test/fixtures/es-modules/esm-top-level-await.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23255,7 +23144,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d94/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --permission --allow-fs-read * --experimental-loader file:///test/fixtures/es-module-loaders/loader-worker-spawn.mjs /test/fixtures/es-modules/esm-top-level-await.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "]: --- stdout ---\n\n[process 9066]: status = 1, signal = null\nerror: - stderr did not match /code: 'ERR_ACCESS_DENIED'/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --permission --allow-fs-read * --experimental-loader file:///test/fixtures/es-module-loaders/loader-worker-spawn.mjs /test/fixtures/es-modules/esm-top-level-await.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23286,7 +23175,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ricted/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --permission --allow-fs-read * --experimental-loader file:///test/fixtures/empty.js /test/fixtures/es-modules/esm-top-level-await.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 9070]: --- stdout ---\n\n[process 9070]: status = 1, signal = null\nerror: - stderr did not match /Error: Access to this API has been restricted/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --no-warnings --permission --allow-fs-read * --experimental-loader file:///test/fixtures/empty.js /test/fixtures/es-modules/esm-top-level-await.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23317,7 +23206,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " source: 'throw new Error(\"I should not be thrown because the loader ignores user-supplied source for builtins\")',\n format: \"builtin\"\n };\n }, testModules.length)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-builtin-require.js:28:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert.strictEqual(result.source, null);\n return {\n source: 'throw new Error(\"I should not be thrown because the loader ignores user-supplied source for builtins\")',\n format: \"builtin\"\n };\n }, testModules.length)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-builtin-require.js:28:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23375,7 +23264,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "extResolve) => {\n assert(Array.isArray(context.conditions));\n context.conditions = [\"foo\", ...context.conditions];\n return nextResolve(specifier, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-custom-conditions-cjs.js:17:19)", + "tail": "rHooks({\n resolve: common.mustCall((specifier, context, nextResolve) => {\n assert(Array.isArray(context.conditions));\n context.conditions = [\"foo\", ...context.conditions];\n return nextResolve(specifier, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-custom-conditions-cjs.js:17:19)", "retried": true }, "deno": { @@ -23406,7 +23295,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ");\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-custom-conditions-special-values.js:13:19)\n at (/test/module-hooks/test-module-hooks-custom-conditions-special-values.js:69:3)", + "tail": "esolve(specifier, context, nextResolve) {\n context.conditions = void 0;\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-custom-conditions-special-values.js:13:19)\n at (/test/module-hooks/test-module-hooks-custom-conditions-special-values.js:69:3)", "retried": true }, "deno": { @@ -23468,7 +23357,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ") => {\n const result = nextLoad(url, context);\n assert.strictEqual(result.source, \"\");\n return {\n source: 'export const hello = \"world\"'\n };\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-dispose.js:10:16)\n\nBun v1.4.0 (macOS arm64)", + "tail": "isterHooks({\n load: common.mustCall((url, context, nextLoad) => {\n const result = nextLoad(url, context);\n assert.strictEqual(result.source, \"\");\n return {\n source: 'export const hello = \"world\"'\n };\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-dispose.js:10:16)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23530,7 +23419,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "3669]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --import file:///test/fixtures/module-hooks/sync-and-async/sync-customize.js --import file:///test/fixtures/module-hooks/sync-and-async/async-customize.js /test/fixtures/module-hooks/sync-and-async/app.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "9079]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --import file:///test/fixtures/module-hooks/sync-and-async/sync-customize.js --import file:///test/fixtures/module-hooks/sync-and-async/async-customize.js /test/fixtures/module-hooks/sync-and-async/app.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23561,7 +23450,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ot a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n return { shortCircuit: !0, url: `test://${specifier}` };\n },\n load: common.mustNotCall()\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-buffers.js:14:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": "gisterHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n return { shortCircuit: !0, url: `test://${specifier}` };\n },\n load: common.mustNotCall()\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-buffers.js:14:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23745,7 +23634,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "const result = nextLoad(url, context);\n assert.strictEqual(result.source, \"\");\n return {\n source: 'exports.hello = \"world\"',\n format: \"commonjs\"\n };\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-chained.js:8:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": "{\n load: common.mustCall((url, context, nextLoad) => {\n const result = nextLoad(url, context);\n assert.strictEqual(result.source, \"\");\n return {\n source: 'exports.hello = \"world\"',\n format: \"commonjs\"\n };\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-chained.js:8:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23803,7 +23692,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "registerHooks({\n load: common.mustCall(function(url, context, nextLoad) {\n assert.strictEqual(context.testProp, \"custom\");\n return nextLoad(url, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-context-merged.js:9:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustCall(function(url, context, nextLoad) {\n assert.strictEqual(context.testProp, \"custom\");\n return nextLoad(url, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-context-merged.js:9:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23861,7 +23750,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustCall(function(url, context, nextLoad) {\n return nextLoad(url);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-context-optional.js:8:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "require('module');\n7 | \n8 | const hook = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustCall(function(url, context, nextLoad) {\n return nextLoad(url);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-context-optional.js:8:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23890,7 +23779,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nextLoad) => {\n const result = nextLoad(url, context);\n assert.strictEqual(result.source, \"\");\n return {\n source: 'export const hello = \"world\"'\n };\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-detection.js:8:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": ". (In 'registerHooks({\n load: common.mustCall((url, context, nextLoad) => {\n const result = nextLoad(url, context);\n assert.strictEqual(result.source, \"\");\n return {\n source: 'export const hello = \"world\"'\n };\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-detection.js:8:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -23977,7 +23866,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "return {\n format: \"commonjs\",\n source: virtualModules.get(url),\n shortCircuit: !0\n };\n return nextLoad(url, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-import-cjs-custom-source.js:15:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "text, nextLoad) => {\n if (virtualModules.has(url))\n return {\n format: \"commonjs\",\n source: virtualModules.get(url),\n shortCircuit: !0\n };\n return nextLoad(url, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-import-cjs-custom-source.js:15:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24010,7 +23899,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nction(url, context, nextLoad) {\n assert.strictEqual(url, pathToFileURL(path.resolve(__dirname, \"../fixtures/value.cjs\")).href);\n return nextLoad(url, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-import-cjs.js:10:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ot a function. (In 'registerHooks({\n load: common.mustCall(function(url, context, nextLoad) {\n assert.strictEqual(url, pathToFileURL(path.resolve(__dirname, \"../fixtures/value.cjs\")).href);\n return nextLoad(url, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-import-cjs.js:10:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24039,7 +23928,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lt.source = !0;\n else if (url.endsWith(\"function\"))\n result.source = () => {};\n else if (url.endsWith(\"object\"))\n result.source = {};\n return result;\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-invalid.js:9:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "source = 1;\n else if (url.endsWith(\"boolean\"))\n result.source = !0;\n else if (url.endsWith(\"function\"))\n result.source = () => {};\n else if (url.endsWith(\"object\"))\n result.source = {};\n return result;\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-invalid.js:9:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24068,7 +23957,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rHooks is not a function. (In 'registerHooks({ load })', 'registerHooks' is undefined)\n at addHook (/test/fixtures/module-hooks/add-hook.js:23:22)\n at (/test/module-hooks/test-module-hooks-load-mock.js:25:16)\n\nBun v1.4.0 (macOS arm64)", + "tail": "(), filename) }\n21 | }\n22 | \n23 | const registered = registerHooks({ load });\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({ load })', 'registerHooks' is undefined)\n at addHook (/test/fixtures/module-hooks/add-hook.js:23:22)\n at (/test/module-hooks/test-module-hooks-load-mock.js:25:16)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24097,7 +23986,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load(url, context, nextLoad) {\n return nextLoad(url, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-short-circuit-required-middle.js:8:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": " when nextLoad is not called.\n8 | const hook1 = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load(url, context, nextLoad) {\n return nextLoad(url, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-short-circuit-required-middle.js:8:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24126,7 +24015,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "udes(\"empty\"))\n return {\n format: \"commonjs\",\n source: 'module.exports = \"modified\"'\n };\n return nextLoad(url, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-short-circuit-required-start.js:8:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "terHooks({\n load(url, context, nextLoad) {\n if (url.includes(\"empty\"))\n return {\n format: \"commonjs\",\n source: 'module.exports = \"modified\"'\n };\n return nextLoad(url, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-short-circuit-required-start.js:8:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24155,7 +24044,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "n nextResolve is not called.\n8 | const hook1 = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustNotCall()\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-short-circuit.js:8:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": " \n7 | // Test that shortCircuit is required in a middle hook when nextResolve is not called.\n8 | const hook1 = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustNotCall()\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-short-circuit.js:8:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24213,7 +24102,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "load(url, context, nextLoad) {\n assert.strictEqual(url, \"foo://bar\");\n return nextLoad(fixtures.fileURL(\"module-hooks\", \"redirected-fs.js\").href, context);\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-url-change-require.js:11:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Circuit: !0\n };\n }),\n load: common.mustCall(function load(url, context, nextLoad) {\n assert.strictEqual(url, \"foo://bar\");\n return nextLoad(fixtures.fileURL(\"module-hooks\", \"redirected-fs.js\").href, context);\n })\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-load-url-change-require.js:11:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24242,7 +24131,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --require /test/fixtures/module-hooks/register-typescript-hooks.js /test/fixtures/module-hooks/log-user.cts\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ks/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)\n\n[process 9105]: --- stdout ---\n\n[process 9105]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --require /test/fixtures/module-hooks/register-typescript-hooks.js /test/fixtures/module-hooks/log-user.cts\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24304,7 +24193,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "join(\",\")}]);\n const compiled = new WebAssembly.Module(buf);\n module.exports = (new WebAssembly.Instance(compiled)).exports;`,\n format: \"commonjs\"\n };\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-require-wasm.js:11:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nst buf = Buffer.from([${Array.from(readFileSync(new URL(url))).join(\",\")}]);\n const compiled = new WebAssembly.Module(buf);\n module.exports = (new WebAssembly.Instance(compiled)).exports;`,\n format: \"commonjs\"\n };\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-require-wasm.js:11:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24519,7 +24408,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lve: common.mustCall(function(specifier, context, nextResolve) {\n assert.strictEqual(context.testProp, \"custom\");\n return nextResolve(specifier, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-context-merged.js:9:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": registerHooks is not a function. (In 'registerHooks({\n resolve: common.mustCall(function(specifier, context, nextResolve) {\n assert.strictEqual(context.testProp, \"custom\");\n return nextResolve(specifier, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-context-merged.js:9:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24577,7 +24466,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "egisterHooks is not a function. (In 'registerHooks({\n resolve: common.mustCall(function(specifier, context, nextResolve) {\n return nextResolve(specifier);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-context-optional.js:8:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | const hook = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n resolve: common.mustCall(function(specifier, context, nextResolve) {\n return nextResolve(specifier);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-context-optional.js:8:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24606,7 +24495,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " common.mustCall(function(specifier, context, nextResolve) {\n assert.strictEqual(specifier, \"../fixtures/value.cjs\");\n return nextResolve(specifier, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-import-cjs.js:8:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "gisterHooks is not a function. (In 'registerHooks({\n resolve: common.mustCall(function(specifier, context, nextResolve) {\n assert.strictEqual(specifier, \"../fixtures/value.cjs\");\n return nextResolve(specifier, context);\n }, 1)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-import-cjs.js:8:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24635,7 +24524,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " result.url = !0;\n else if (specifier === \"function\")\n result.url = () => {};\n else if (specifier === \"object\")\n result.url = {};\n return result;\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-invalid.js:9:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " result.url = 1;\n else if (specifier === \"boolean\")\n result.url = !0;\n else if (specifier === \"function\")\n result.url = () => {};\n else if (specifier === \"object\")\n result.url = {};\n return result;\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-invalid.js:9:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24788,7 +24677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = require('node:module');\n4 | registerHooks(require('./typescript-transpiler'));\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks(require(\"./typescript-transpiler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const { registerHooks } = require('node:module');\n4 | registerHooks(require('./typescript-transpiler'));\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks(require(\"./typescript-transpiler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24817,7 +24706,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = require('node:module');\n4 | registerHooks(require('./typescript-transpiler'));\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks(require(\"./typescript-transpiler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const { registerHooks } = require('node:module');\n4 | registerHooks(require('./typescript-transpiler'));\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks(require(\"./typescript-transpiler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24846,7 +24735,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n at (/test/module-hooks/test-module-hooks-resolve-load-require-inline-typescript-override.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "escript-transpiler'));\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks(require(\"./typescript-transpiler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n at (/test/module-hooks/test-module-hooks-resolve-load-require-inline-typescript-override.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24875,7 +24764,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "piler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n at (/test/module-hooks/test-module-hooks-resolve-load-require-inline-typescript.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "re('./typescript-transpiler'));\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks(require(\"./typescript-transpiler\"))', 'registerHooks' is undefined)\n at (/test/fixtures/module-hooks/register-typescript-hooks.js:4:1)\n at (/test/module-hooks/test-module-hooks-resolve-load-require-inline-typescript.js:7:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24904,7 +24793,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " if (specifier === \"assert\")\n return {\n url: \"node:zlib\",\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-builtin.js:10:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "isterHooks({\n resolve(specifier, context, nextResolve) {\n if (specifier === \"assert\")\n return {\n url: \"node:zlib\",\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-builtin.js:10:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24933,7 +24822,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n }\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-consistency.js:15:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ncy-target\") {\n resolvedSpecifiers.push(specifier);\n return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n }\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-consistency.js:15:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24962,7 +24851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-create-require.js:15:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "{\n if (specifier === \"test-create-require-resolve-target\")\n return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-create-require.js:15:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -24991,7 +24880,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eError: registerHooks is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-fallthrough.js:10:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n 9 | \n10 | const hook = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-fallthrough.js:10:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25020,7 +24909,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-imported-cjs.js:14:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "{\n if (specifier === \"test-require-resolve-hook-target\")\n return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-imported-cjs.js:14:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25049,7 +24938,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-loaded-with-source.js:20:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " if (specifier === \"test-require-resolve-hook-target\")\n return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }, 2)\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-loaded-with-source.js:20:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25080,7 +24969,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "esolve(specifier, context, nextResolve) {\n if (specifier === \"bar\")\n resolveCallCount.push(specifier);\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-paths.js:15:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror: registerHooks is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n if (specifier === \"bar\")\n resolveCallCount.push(specifier);\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-paths.js:15:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25109,7 +24998,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "get\")\n return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-redirect.js:14:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ontext, nextResolve) {\n if (specifier === \"test-resolve-target\")\n return {\n url: pathToFileURL(redirectedPath).href,\n shortCircuit: !0\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-require-resolve-redirect.js:14:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25138,7 +25027,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error: registerHooks is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-short-circuit-required-middle.js:8:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": "lled.\n8 | const hook1 = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-short-circuit-required-middle.js:8:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25167,7 +25056,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "context, nextResolve) {\n if (specifier === \"foo\")\n return {\n url: \"node:foo\"\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-short-circuit-required-start.js:8:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " is not a function. (In 'registerHooks({\n resolve(specifier, context, nextResolve) {\n if (specifier === \"foo\")\n return {\n url: \"node:foo\"\n };\n return nextResolve(specifier, context);\n }\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-short-circuit-required-start.js:8:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25196,7 +25085,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "le.exports = \"modified\"';\n9 | const hook1 = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustNotCall()\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-short-circuit.js:9:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ortCircuit works for the resolve hook.\n8 | const source1 = 'module.exports = \"modified\"';\n9 | const hook1 = registerHooks({\n ^\nTypeError: registerHooks is not a function. (In 'registerHooks({\n load: common.mustNotCall()\n })', 'registerHooks' is undefined)\n at (/test/module-hooks/test-module-hooks-resolve-short-circuit.js:9:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25225,7 +25114,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t } = require('node:test');\n7 | \n8 | describe('AbortSignal.any() with timeout signals', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-abort-controller-any-timeout.js:8:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-abort-controller-any-timeout.js:20:18\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n(fail) AbortSignal.any() with timeout signals > should abort when the first timeout signal fires [9003.95ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [9.03s]", "retried": true }, "deno": { @@ -25254,7 +25143,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-abortcontroller-internal.js:12:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "kSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-abortcontroller-internal.js:12:3)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -25285,7 +25174,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r-internal.js instead.\n19 | \n20 | test('Abort is fired with the correct event type on AbortControllers', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-abortcontroller.js:20:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "active listener [12.27ms]\n(pass) Setting a long timeout should not keep the process open [0.05ms]\n(pass) AbortSignal.reason should default [0.06ms]\n(pass) abortSignal.throwIfAborted() works as expected [0.05ms]\n(pass) abortSignal.throwIfAobrted() works as expected (2) [0.05ms]\n(pass) abortSignal.throwIfAobrted() works as expected (3) [0.05ms]\n\n 15 pass\n 4 fail\nRan 19 tests across 1 file. [79.00ms]", "retried": true }, "deno": { @@ -25316,7 +25205,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "11 | test,\n12 | } = require('node:test');\n13 | \n14 | test('Aborted works when provided a resource', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-aborted-util.js:14:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n actual: 0,\n expected: 13,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-aborted-util.js:82:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n(fail) Does not hang forever [5.99ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [38.00ms]", "retried": true }, "deno": { @@ -25347,7 +25236,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt assert from 'node:assert';\n5 | \n6 | describe('AbortSignal.any()', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-abortsignal-any.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "the same signal more than once [0.03ms]\n(pass) AbortSignal.any() > handles deeply aborted signals [0.39ms]\n(pass) AbortSignal.any() > executes abort handlers in correct order [0.06ms]\n(pass) AbortSignal.any() > must accept WebIDL sequence [0.12ms]\n(pass) AbortSignal.any() > throws TypeError if any value does not implement AbortSignal [0.10ms]\n\n 12 pass\n 1 fail\nRan 13 tests across 1 file. [37.00ms]", "retried": true }, "deno": { @@ -25380,7 +25269,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "13 | } = require('node:test');\n14 | \n15 | test('Can create a transferable abort controller', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-abortsignal-cloneable.js:15:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ortController' is undefined)\n at (/test/parallel/test-abortsignal-cloneable.js:76:14)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) A cloned AbortSignal does not keep the event loop open [0.10ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [26.00ms]", "retried": true }, "deno": { @@ -25411,7 +25300,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "102 | run(1);\n103 | }\n104 | \n105 | const limit = 10_000;\n106 | \n107 | describe('when there is a long-lived signal', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-abortsignal-drop-settled-signals.mjs:107:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " | setImmediate(() => {\n79 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-abortsignal-drop-settled-signals.mjs:79:20)\n(fail) drops settled signals even when there are listeners [22.62ms]\n\n 1 pass\n 6 fail\nRan 7 tests across 1 file. [120.00ms]", "retried": true }, "deno": { @@ -25444,7 +25333,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tty_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-accessor-properties.js:15:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ernalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tty_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-accessor-properties.js:15:17)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [26.00ms]", "retried": true }, "deno": { @@ -25526,11 +25415,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "\n 9 | \n10 | // Iterate over all Math functions\n11 | test('Iterate over all Math functions', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-arm-math-illegal-instruction.js:11:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25582,11 +25469,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " process.env.NODE_DISABLE_COLORS = '1';\n14 | \n15 | test({ skip: !hasCrypto || !hasLocalStorage }, () => {\n ^\nerror: Cannot use test.skip outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1646:15)\n at (/test/parallel/test-assert-checktag.js:15:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -25613,11 +25498,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "BLE_COLORS = '1';\n14 | }\n15 | \n16 | test('Assert class destructuring behavior - diff option', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-class-destructuring.js:16:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25642,11 +25525,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": ") {\n14 | process.env.NODE_DISABLE_COLORS = '1';\n15 | }\n16 | \n17 | test('Assert constructor requires new', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-class.js:17:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25671,11 +25552,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "-equal:\\n' +\n14 | '+ actual - expected\\n' +\n15 | '\\n';\n16 | \n17 | test('Handle error causes', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-deep-with-error.js:17:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25703,7 +25582,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "own tests.\n60 | \n61 | // Turn off no-restricted-properties because we are testing deepEqual!\n62 | /* eslint-disable no-restricted-properties */\n63 | \n64 | test('deepEqual', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-deep.js:64:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "]\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertNotDeepOrStrict (/test/parallel/test-assert-deep.js:213:10)\n at /test/parallel/test-assert-deep.js:749:3\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) Handle boxed primitives [1.16ms]", "retried": true }, "deno": { @@ -25733,11 +25612,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "scribe('ensure the assert.ok throwing similar error messages for esm and cjs files', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-assert-esm-cjs-message-verify.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25762,11 +25639,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "n');\n4 | const assert = require('assert');\n5 | const { test } = require('node:test');\n6 | \n7 | test('No args', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-fail.js:7:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25794,7 +25669,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xtures');\n 9 | \n10 | test('Verify that asserting in the very first line produces the expected result', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-first-line.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "(node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/parallel/test-assert-first-line.js:11:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) Verify that asserting in the very first line produces the expected result [5.97ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [36.00ms]", "retried": true }, "deno": { @@ -25820,11 +25695,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "require('node:test');\n6 | \n7 | test('Test that assert.ifError has the correct stack trace of both stacks', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert-if-error.js:7:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25852,7 +25725,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ALID_ARG_TYPE\"\n\n at (/test/parallel/test-assert-myers-diff.js:15:7)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-assert-myers-diff.js:13:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rr1, arr2);\n ^\nTypeError: The \"actual\" argument must be of type string. Received an instance of Object\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-assert-myers-diff.js:15:7)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-assert-myers-diff.js:13:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -25881,7 +25754,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " return { cryptoKey, keyObject };\n38 | }\n39 | \n40 | describe('Object Comparison Tests', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-assert-partial-deep-equal.js:40:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ctEqual > throws an error > throws when comparing an Int16Array with a Uint16Array [0.06ms]\n(pass) Object Comparison Tests > partialDeepStrictEqual > throws an error > throws when comparing two dataviews with different buffers [0.06ms]\n(pass) Object Comparison Tests > partialDeepStrictEqual > throws an error > throws because expected Uint8Array(SharedArrayBuffer) is not a subset of actual [0.04ms]", "retried": true }, "deno": { @@ -25907,11 +25780,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "| return f.apply(this, args);\n11 | };\n12 | }\n13 | \n14 | suite('equalArrayPairs', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-assert-typedarray-deepequal.js:14:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -25939,7 +25810,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "disable no-restricted-syntax */\n42 | /* eslint-disable no-restricted-properties */\n43 | \n44 | test('some basics', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-assert.js:44:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n expected: 2,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/parallel/test-assert.js:1660:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) Functions as error message [0.22ms]", "retried": true }, "deno": { @@ -25972,7 +25843,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ") => {\n21 | // Verify the relationships between async ids\n22 | // 1 => 2, 2 => 3 etc\n23 | assert.strictEqual(asyncIds[0][1], asyncIds[1][0]);\n ^\nTypeError: undefined is not an object (evaluating 'asyncIds[0][1]')\n at (/test/parallel/test-async-hooks-async-await.js:23:31)", + "tail": "ync-hooks-async-await.js:26:16)\n\n18 | }\n19 | \n20 | main().then(() => {\n21 | // Verify the relationships between async ids\n22 | // 1 => 2, 2 => 3 etc\n23 | assert.strictEqual(asyncIds[0][1], asyncIds[1][0]);\n ^\nTypeError: undefined is not an object (evaluating 'asyncIds[0][1]')\n at (/test/parallel/test-async-hooks-async-await.js:23:31)", "retried": true }, "deno": { @@ -26032,7 +25903,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t least 2, actual 0.\n at (/test/parallel/test-async-hooks-close-during-destroy.js:14:16)\nMismatched function calls. Expected at least 2, actual 0.\n at (/test/parallel/test-async-hooks-close-during-destroy.js:18:19)", + "tail": "Mismatched function calls. Expected at least 2, actual 0.\n at (/test/parallel/test-async-hooks-close-during-destroy.js:14:16)\nMismatched function calls. Expected at least 2, actual 0.\n at (/test/parallel/test-async-hooks-close-during-destroy.js:18:19)", "retried": true }, "deno": { @@ -26088,7 +25959,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " type: 'PROMISE'\n- },\n- {\n- after: true,\n- before: true,\n- init: true,\n- promiseResolve: true,\n- type: 'PROMISE'\n- }\n- ]\n\n at innerFail (node:assert:48:32)\n at deepStrictEqual (node:assert:152:14)\n at (/test/parallel/test-async-hooks-correctly-switch-promise-hook.js:54:10)", + "tail": "before: false,\n- init: true,\n- promiseResolve: true,\n- type: 'PROMISE'\n- },\n- {\n- after: true,\n- before: true,\n- init: true,\n- promiseResolve: true,\n- type: 'PROMISE'\n- }\n- ]\n\n at innerFail (node:assert:48:32)\n at deepStrictEqual (node:assert:152:14)\n at (/test/parallel/test-async-hooks-correctly-switch-promise-hook.js:54:10)", "retried": true }, "deno": { @@ -26119,7 +25990,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| asyncId = res.asyncId();\n22 | }\n23 | \n24 | setImmediate(common.mustCall(() => {\n25 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-async-hooks-destroy-on-gc.js:25:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "20 | const res = new async_hooks.AsyncResource('foobar');\n21 | asyncId = res.asyncId();\n22 | }\n23 | \n24 | setImmediate(common.mustCall(() => {\n25 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-async-hooks-destroy-on-gc.js:25:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26148,7 +26019,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted exactly 2, actual 0.\n at (/test/parallel/test-async-hooks-disable-during-promise.js:11:16)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-async-hooks-disable-during-promise.js:12:18)", + "tail": "Mismatched noop function calls. Expected exactly 2, actual 0.\n at (/test/parallel/test-async-hooks-disable-during-promise.js:11:16)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-async-hooks-disable-during-promise.js:12:18)", "retried": true }, "deno": { @@ -26179,7 +26050,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ce('foobar', { requireManualDestroy: true });\n15 | \n16 | setImmediate(() => {\n17 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-async-hooks-disable-gc-tracking.js:17:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "12 | }).enable();\n13 | \n14 | new async_hooks.AsyncResource('foobar', { requireManualDestroy: true });\n15 | \n16 | setImmediate(() => {\n17 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-async-hooks-disable-gc-tracking.js:17:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26208,7 +26079,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctEqual(id, initialAsyncId);\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n generatedMessage: true,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-enable-before-promise-resolve.js:23:10", + "tail": "const id = async_hooks.executionAsyncId();\n23 | assert.notStrictEqual(id, initialAsyncId);\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n generatedMessage: true,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-enable-before-promise-resolve.js:23:10", "retried": true }, "deno": { @@ -26239,7 +26110,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "onAsyncId(), initialAsyncId);\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n generatedMessage: true,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at main (/test/parallel/test-async-hooks-enable-disable-enable.js:14:10)", + "tail": "13 | await 0;\n14 | assert.notStrictEqual(async_hooks.executionAsyncId(), initialAsyncId);\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n generatedMessage: true,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at main (/test/parallel/test-async-hooks-enable-disable-enable.js:14:10)", "retried": true }, "deno": { @@ -26299,7 +26170,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ected at least 1, actual 0.\n at (/test/parallel/test-async-hooks-enable-during-promise.js:8:20)\nMismatched noop function calls. Expected at least 2, actual 0.\n at (/test/parallel/test-async-hooks-enable-during-promise.js:9:19)", + "tail": "Mismatched noop function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-async-hooks-enable-during-promise.js:8:20)\nMismatched noop function calls. Expected at least 2, actual 0.\n at (/test/parallel/test-async-hooks-enable-during-promise.js:9:19)", "retried": true }, "deno": { @@ -26330,7 +26201,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Expected exactly 1, actual 0.\n at (/test/parallel/test-async-hooks-enable-recursive.js:8:16)\nMismatched function calls. Expected exactly 2, actual 0.\n at (/test/parallel/test-async-hooks-enable-recursive.js:12:16)", + "tail": "Mismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-async-hooks-enable-recursive.js:8:16)\nMismatched function calls. Expected exactly 2, actual 0.\n at (/test/parallel/test-async-hooks-enable-recursive.js:12:16)", "retried": true }, "deno": { @@ -26388,7 +26259,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "erator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-execution-async-resource-await.js:44:14\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tual: {\n state: \"/9\",\n},\n expected: {\n state: \"/8\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-execution-async-resource-await.js:44:14\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26417,7 +26288,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-execution-async-resource.js:39:14\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " actual: {\n state: \"/9\",\n},\n expected: {\n state: \"/8\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-execution-async-resource.js:39:14\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26446,7 +26317,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at main (/test/parallel/test-async-hooks-fatal-error.js:48:14)\n at /test/parallel/test-async-hooks-fatal-error.js:10:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssert.strictEqual(cp.status, 1, type);\n ^\nAssertionError: init\n\n0 !== 1\n\n generatedMessage: false,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at main (/test/parallel/test-async-hooks-fatal-error.js:48:14)\n at /test/parallel/test-async-hooks-fatal-error.js:10:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26566,7 +26437,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "foobar');\n16 | res.emitDestroy();\n17 | }\n18 | \n19 | setImmediate(() => {\n20 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-async-hooks-prevent-double-destroy.js:20:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "15 | const res = new async_hooks.AsyncResource('foobar');\n16 | res.emitDestroy();\n17 | }\n18 | \n19 | setImmediate(() => {\n20 | globalThis.gc();\n ^\nTypeError: globalThis.gc is not a function. (In 'globalThis.gc()', 'globalThis.gc' is undefined)\n at (/test/parallel/test-async-hooks-prevent-double-destroy.js:20:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26595,7 +26466,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "PROMISE types to reach init.\n18 | assert.strictEqual(p_inits, EXPECTED_INITS);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-async-hooks-promise-enable-disable.js:18:10)", + "tail": "er !== null)\n16 | throw p_er;\n17 | // Expecting exactly 2 PROMISE types to reach init.\n18 | assert.strictEqual(p_inits, EXPECTED_INITS);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-async-hooks-promise-enable-disable.js:18:10)", "retried": true }, "deno": { @@ -26626,7 +26497,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Id(), promiseAsyncIds[1]);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== undefined\n\n generatedMessage: true,\n actual: 0,\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-promise-triggerid.js:32:10", + "tail": "all(() => {\n32 | assert.strictEqual(async_hooks.executionAsyncId(), promiseAsyncIds[1]);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== undefined\n\n generatedMessage: true,\n actual: 0,\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-promise-triggerid.js:32:10", "retried": true }, "deno": { @@ -26657,7 +26528,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nst a = Promise.resolve(42);\n26 | a.then(common.mustCall());\n27 | \n28 | assert.strictEqual(initCalls[0].triggerId, 1);\n ^\nTypeError: undefined is not an object (evaluating 'initCalls[0].triggerId')\n at (/test/parallel/test-async-hooks-promise.js:28:30)\n\nBun v1.4.0 (macOS arm64)", + "tail": "23 | }).enable();\n24 | \n25 | const a = Promise.resolve(42);\n26 | a.then(common.mustCall());\n27 | \n28 | assert.strictEqual(initCalls[0].triggerId, 1);\n ^\nTypeError: undefined is not an object (evaluating 'initCalls[0].triggerId')\n at (/test/parallel/test-async-hooks-promise.js:28:30)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -26858,7 +26729,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "o be strictly equal:\n+ actual - expected\n\n+ Immediate {}\n- undefined\n\n generatedMessage: true,\n actual: Immediate (#1),\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-top-level-clearimmediate.js:31:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ", seenResource);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ Immediate {}\n- undefined\n\n generatedMessage: true,\n actual: Immediate (#1),\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-hooks-top-level-clearimmediate.js:31:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27213,7 +27084,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-async-local-storage-http-parser-leak.js:28:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": " operator: \"==\",\n24 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-async-local-storage-http-parser-leak.js:28:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27385,7 +27256,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-async-wrap-destroyid.js:6:20)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-async-wrap-destroyid.js:6:20)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27416,7 +27287,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt.ok(stderr.includes('Maximum call stack size exceeded'), stderr);\n ^\nAssertionError: \n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-wrap-pop-id-during-load.js:25:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "48);\n24 | assert.doesNotMatch(stderr, /async.*hook/i);\n25 | assert.ok(stderr.includes('Maximum call stack size exceeded'), stderr);\n ^\nAssertionError: \n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-wrap-pop-id-during-load.js:25:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27505,7 +27376,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rror: Expected \"actual\" to be strictly unequal to: 0\n generatedMessage: true,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-wrap-trigger-id.js:16:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Ids\n16 | assert.notStrictEqual(\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n generatedMessage: true,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-async-wrap-trigger-id.js:16:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27536,7 +27407,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": "ustCall(() => {\n37 | assert.strictEqual(call_id, async_hooks.executionAsyncId());\n ^\nAssertionError: Expected values to be strictly equal:\n\nnull !== 0\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-async-wrap-uncaughtexception.js:37:10)", + "tail": "ble();\n34 | \n35 | \n36 | process.on('uncaughtException', common.mustCall(() => {\n37 | assert.strictEqual(call_id, async_hooks.executionAsyncId());\n ^\nAssertionError: Expected values to be strictly equal:\n\nnull !== 0\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-async-wrap-uncaughtexception.js:37:10)", "retried": true }, "deno": { @@ -27567,7 +27438,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rce.asyncId(), fn2());\n33 | assert.notStrictEqual(asyncId, fn2());\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n at innerFail (node:assert:48:32)\n at notStrictEqual (node:assert:192:14)\n at (/test/parallel/test-asyncresource-bind.js:33:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "yncId = executionAsyncId();\n32 | assert.strictEqual(asyncResource.asyncId(), fn2());\n33 | assert.notStrictEqual(asyncId, fn2());\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to: 0\n at innerFail (node:assert:48:32)\n at notStrictEqual (node:assert:192:14)\n at (/test/parallel/test-asyncresource-bind.js:33:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27650,7 +27521,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "${COMP_WORDS[COMP_CWORD]}\"\\n' +\n ' if [[ \"${cur_word}\" == -* ]] ; then\\n' +\n \" COMPREPLY=( $(compgen -W '\"\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-bash-completion.js:30:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "mplete() {\\n' +\n ' local cur_word options\\n' +\n ' cur_word=\"${COMP_WORDS[COMP_CWORD]}\"\\n' +\n ' if [[ \"${cur_word}\" == -* ]] ; then\\n' +\n \" COMPREPLY=( $(compgen -W '\"\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-bash-completion.js:30:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27735,7 +27606,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 'zlib'\n ]\n\n generatedMessage: true,\n actual: [ \"crypto\", \"fs\", \"os\", \"trace\", \"zlib\" ],\n expected: [ \"crypto\", \"fs\", \"internal\", \"os\", \"trace\", \"zlib\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-binding-constants.js:9:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " 'crypto',\n 'fs',\n- 'internal',\n 'os',\n 'trace',\n 'zlib'\n ]\n\n generatedMessage: true,\n actual: [ \"crypto\", \"fs\", \"os\", \"trace\", \"zlib\" ],\n expected: [ \"crypto\", \"fs\", \"internal\", \"os\", \"trace\", \"zlib\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-binding-constants.js:9:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27793,7 +27664,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-blob-file-backed.js:52:10", + "tail": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-blob-file-backed.js:52:10", "retried": true }, "deno": { @@ -27913,7 +27784,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pected values to be strictly equal:\n+ actual - expected\n\n+ 'BlockList {}'\n- '[BlockList]'\n\n generatedMessage: true,\n actual: \"BlockList {}\",\n expected: \"[BlockList]\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-blocklist.js:267:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ctEqual(ret, '[BlockList]');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'BlockList {}'\n- '[BlockList]'\n\n generatedMessage: true,\n actual: \"BlockList {}\",\n expected: \"[BlockList]\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-blocklist.js:267:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28087,7 +27958,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\nRangeError: Out of memory\n at (/test/parallel/test-buffer-alloc.js:15:9)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-buffer-alloc.js:14:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "internal limits should be updated if this fails.\n14 | assert.throws(\n15 | () => new Uint8Array(kMaxLength + 1),\n ^\nRangeError: Out of memory\n at (/test/parallel/test-buffer-alloc.js:15:9)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-buffer-alloc.js:14:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28170,7 +28041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "28 | const isOnHeap = !arrayBufferViewHasBuffer(array);\n ^\nTypeError: arrayBufferViewHasBuffer is not a function. (In 'arrayBufferViewHasBuffer(array)', 'arrayBufferViewHasBuffer' is undefined)\n at (/test/parallel/test-buffer-backing-arraybuffer.js:28:23)\n\nBun v1.4.0 (macOS arm64)", + "tail": "locations.\n25 | ];\n26 | \n27 | for (const array of arrays) {\n28 | const isOnHeap = !arrayBufferViewHasBuffer(array);\n ^\nTypeError: arrayBufferViewHasBuffer is not a function. (In 'arrayBufferViewHasBuffer(array)', 'arrayBufferViewHasBuffer' is undefined)\n at (/test/parallel/test-buffer-backing-arraybuffer.js:28:23)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28363,7 +28234,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", 'number');\n10 | assert(MAX_STRING_LENGTH <= MAX_LENGTH);\n11 | assert.throws(() => ' '.repeat(MAX_STRING_LENGTH + 1),\n ^\nRangeError: Out of memory\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-buffer-constants.js:11:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "GTH, 'number');\n 9 | assert.strictEqual(typeof MAX_STRING_LENGTH, 'number');\n10 | assert(MAX_STRING_LENGTH <= MAX_LENGTH);\n11 | assert.throws(() => ' '.repeat(MAX_STRING_LENGTH + 1),\n ^\nRangeError: Out of memory\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-buffer-constants.js:11:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28392,7 +28263,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ommon/index.js:723:31)\n at (/test/parallel/test-buffer-constructor-deprecation-error.js:9:8)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-buffer-constructor-deprecation-error.js:13:30)", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/parallel/test-buffer-constructor-deprecation-error.js:9:8)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-buffer-constructor-deprecation-error.js:13:30)", "retried": true }, "deno": { @@ -28421,7 +28292,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-buffer-constructor-node-modules-paths.js:18:5)\n at /test/parallel/test-buffer-constructor-node-modules-paths.js:27:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "0005] DeprecationWarning'), stderr);\n ^\nAssertionError: \n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-buffer-constructor-node-modules-paths.js:18:5)\n at /test/parallel/test-buffer-constructor-node-modules-paths.js:27:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28450,7 +28321,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 90703]: --- stderr ---\n\n[process 90703]: --- stdout ---\n\n[process 90703]: status = 0, signal = null\nerror: - stderr did not match /DEP0005/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --pending-deprecation /test/fixtures/warning_node_modules/new-buffer-cjs.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 9293]: --- stderr ---\n\n[process 9293]: --- stdout ---\n\n[process 9293]: status = 0, signal = null\nerror: - stderr did not match /DEP0005/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --pending-deprecation /test/fixtures/warning_node_modules/new-buffer-cjs.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28479,7 +28350,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fer-constructor-outside-node-modules.js:17:39)\nMismatched function calls. Expected exactly 1, actual 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/parallel/test-buffer-constructor-outside-node-modules.js:25:8)", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-buffer-constructor-outside-node-modules.js:17:39)\nMismatched function calls. Expected exactly 1, actual 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/parallel/test-buffer-constructor-outside-node-modules.js:25:8)", "retried": true }, "deno": { @@ -28645,7 +28516,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "quire('../common');\n4 | const assert = require('assert');\n5 | const { codes: { ERR_OUT_OF_RANGE } } = require('internal/errors');\n ^\nTypeError: Cannot destructure property 'ERR_OUT_OF_RANGE' from null or undefined value\n at (/test/parallel/test-buffer-fill.js:5:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": "lags: --expose-internals\n2 | 'use strict';\n3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const { codes: { ERR_OUT_OF_RANGE } } = require('internal/errors');\n ^\nTypeError: Cannot destructure property 'ERR_OUT_OF_RANGE' from null or undefined value\n at (/test/parallel/test-buffer-fill.js:5:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28701,7 +28572,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Int16\", \"readInt32\", \"utf16leSlice\",\n \"utf16leWrite\", \"writeDouble\", \"writeFloat\", \"writeUInt16\", \"writeUInt32\", Symbol(Symbol.species)\n],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-buffer-generic-methods.js:114:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "readBigInt64\", \"readBigUInt64\", \"readDouble\", \"readFloat\", \"readInt16\", \"readInt32\", \"utf16leSlice\",\n \"utf16leWrite\", \"writeDouble\", \"writeFloat\", \"writeUInt16\", \"writeUInt32\", Symbol(Symbol.species)\n],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-buffer-generic-methods.js:114:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28757,7 +28628,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "IndexOf(1, \"str\")')\n at (/test/parallel/test-buffer-indexof.js:627:5)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-buffer-indexof.js:625:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "dexOf(1, 'str');\n ^\nTypeError: function is not a constructor (evaluating 'new (require(\"buffer\")).Buffer.prototype.lastIndexOf(1, \"str\")')\n at (/test/parallel/test-buffer-indexof.js:627:5)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-buffer-indexof.js:625:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -29170,7 +29041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ayBuffer(11) [ 104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100 ],\n expected: ArrayBuffer(11) [ 104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100 ],\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-buffer-pool-untransferable.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n [byteLength]: 11\n}\n\n generatedMessage: true,\n actual: ArrayBuffer(11) [ 104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100 ],\n expected: ArrayBuffer(11) [ 104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100 ],\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-buffer-pool-untransferable.js:12:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -29358,11 +29229,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "cribe, it } = require('node:test');\n8 | \n9 | describe('Using resizable ArrayBuffer with Buffer...', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-buffer-resizable.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -29525,7 +29394,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| buf.copy(padded);\n30 | padded.swap64();\n31 | assert.deepStrictEqual(padded.subarray(0, 8), expected);\n32 | }\n33 | \n34 | eval('%PrepareFunctionForOptimization(Buffer.prototype.swap16)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-buffer-swap-fast.js:34:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "29 | buf.copy(padded);\n30 | padded.swap64();\n31 | assert.deepStrictEqual(padded.subarray(0, 8), expected);\n32 | }\n33 | \n34 | eval('%PrepareFunctionForOptimization(Buffer.prototype.swap16)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-buffer-swap-fast.js:34:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -29608,7 +29477,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ffer;\n12 | try {\n13 | largeBuffer = Buffer.alloc(threshold + 20);\n ^\nRangeError: The value of \"size\" is out of range. It must be >= 0 && <= 4294967296. Received 4_294_967_315\n code: \"ERR_OUT_OF_RANGE\"\n\n at (/test/parallel/test-buffer-tostring-4gb.js:13:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n10 | const threshold = 0xFFFFFFFF; // 2^32 - 1\n11 | let largeBuffer;\n12 | try {\n13 | largeBuffer = Buffer.alloc(threshold + 20);\n ^\nRangeError: The value of \"size\" is out of range. It must be >= 0 && <= 4294967296. Received 4_294_967_315\n code: \"ERR_OUT_OF_RANGE\"\n\n at (/test/parallel/test-buffer-tostring-4gb.js:13:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -29718,7 +29587,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.deepStrictEqual(newBuf, Buffer.from([ 50, 83, 127, 39, 104, 8, 74, 65, 108, 123, 5, 4, 82, 10, 7, 53]));\n38 | }\n39 | }\n40 | \n41 | eval('%PrepareFunctionForOptimization(utf8Write)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-buffer-write-fast.js:41:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "36 | const newBuf = buf.subarray(0, buf.write(str));\n37 | assert.deepStrictEqual(newBuf, Buffer.from([ 50, 83, 127, 39, 104, 8, 74, 65, 108, 123, 5, 4, 82, 10, 7, 53]));\n38 | }\n39 | }\n40 | \n41 | eval('%PrepareFunctionForOptimization(utf8Write)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-buffer-write-fast.js:41:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -30108,7 +29977,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-bad-stdio.js:13:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": " StringPrototypeSlice,\n13 | Symbol,\n14 | SymbolDispose,\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-bad-stdio.js:13:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -30272,7 +30141,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "put did not match the regular expression /^Error: kill ESRCH$/. Input:\n\n'SystemError: kill() failed: ESRCH: No such process'\n\n at expectedException (node:assert:332:55)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at (/test/parallel/test-child-process-detached.js:39:10)", + "tail": "ssert.throws(function() {\n ^\nAssertionError: The input did not match the regular expression /^Error: kill ESRCH$/. Input:\n\n'SystemError: kill() failed: ESRCH: No such process'\n\n at expectedException (node:assert:332:55)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at (/test/parallel/test-child-process-detached.js:39:10)", "retried": true }, "deno": { @@ -30411,7 +30280,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ");\n ^\nAbortError: The operation was aborted\n cmd: \"sleep 2m\",\n stdout: \"\",\n stderr: \"\",\n code: \"ABORT_ERR\"\n\n at abortChildProcess (node:child_process:1013:42)\n at onAbortListener2 (node:child_process:39:24)\n at (/test/parallel/test-child-process-exec-abortcontroller-promisified.js:26:6)", + "tail": "bortError'),\n25 | }).then(common.mustCall());\n26 | ac.abort();\n ^\nAbortError: The operation was aborted\n cmd: \"sleep 2m\",\n stdout: \"\",\n stderr: \"\",\n code: \"ABORT_ERR\"\n\n at abortChildProcess (node:child_process:1013:42)\n at onAbortListener2 (node:child_process:39:24)\n at (/test/parallel/test-child-process-exec-abortcontroller-promisified.js:26:6)", "retried": true }, "deno": { @@ -30577,7 +30446,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-exec-kill-throws.js:11:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | ReflectApply,\n12 | StringPrototypeSlice,\n13 | Symbol,\n14 | SymbolDispose,\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-exec-kill-throws.js:11:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -31320,7 +31189,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", platformTimeout(200));\n181 | }\n182 | \n183 | process.on('exit', function() {\n184 | assert.strictEqual(server._workers.length, 0);\n ^\nTypeError: undefined is not an object (evaluating 'server._workers.length')\n at (/test/parallel/test-child-process-fork-net.js:184:31)", + "tail": "fork-net.js:176:7)\n179 | child3.disconnect();\n180 | }), platformTimeout(200));\n181 | }\n182 | \n183 | process.on('exit', function() {\n184 | assert.strictEqual(server._workers.length, 0);\n ^\nTypeError: undefined is not an object (evaluating 'server._workers.length')\n at (/test/parallel/test-child-process-fork-net.js:184:31)", "retried": true }, "deno": { @@ -31787,7 +31656,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " underlying file descriptor as stdio[0] is not yet implemented in Bun\n at nodeToBun (node:child_process:933:11)\n at map (1:11)\n at spawn (node:child_process:696:142)\n at spawn (node:child_process:18:39)\n at (/test/parallel/test-child-process-pipe-dataflow.js:39:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "});\n ^\nerror: Passing a stream.Readable without an underlying file descriptor as stdio[0] is not yet implemented in Bun\n at nodeToBun (node:child_process:933:11)\n at map (1:11)\n at spawn (node:child_process:696:142)\n at spawn (node:child_process:18:39)\n at (/test/parallel/test-child-process-pipe-dataflow.js:39:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -31870,7 +31739,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "dle = null;\n45 | proc.on('exit', () => {\n46 | handle.close();\n ^\nTypeError: null is not an object (evaluating 'handle.close')\n at (/test/parallel/test-child-process-recv-handle.js:46:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "stdio: ['pipe', 'pipe', 'pipe', 'ipc']\n43 | });\n44 | let handle = null;\n45 | proc.on('exit', () => {\n46 | handle.close();\n ^\nTypeError: null is not an object (evaluating 'handle.close')\n at (/test/parallel/test-child-process-recv-handle.js:46:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -31928,7 +31797,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "send() cannot be used after the process has exited.\n code: \"ERR_IPC_CHANNEL_CLOSED\"\n\n at (/test/parallel/test-child-process-send-after-close.js:28:26)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": ", testError);\n ^\nerror: Subprocess.send() cannot be used after the process has exited.\n code: \"ERR_IPC_CHANNEL_CLOSED\"\n\n at (/test/parallel/test-child-process-send-after-close.js:28:26)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32011,7 +31880,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e it empty.\n36 | const rv1 = s.send('one', handle, assert.ifError);\n ^\nTypeError: This handle type cannot be sent\n at (/test/parallel/test-child-process-send-returns-boolean.js:36:19)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "owledge should\n35 | // create the internal backlog, but leave it empty.\n36 | const rv1 = s.send('one', handle, assert.ifError);\n ^\nTypeError: This handle type cannot be sent\n at (/test/parallel/test-child-process-send-returns-boolean.js:36:19)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32339,7 +32208,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed badValue\n code: \"ERR_OUT_OF_RANGE\"\n\n at validateTimeout (node:child_process:1038:29)\n at spawn (node:child_process:16:18)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-child-process-spawn-timeout-kill-signal.js:29:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "timeout\" is out of range. It must be an unsigned integer. Received badValue\n code: \"ERR_OUT_OF_RANGE\"\n\n at validateTimeout (node:child_process:1038:29)\n at spawn (node:child_process:16:18)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-child-process-spawn-timeout-kill-signal.js:29:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32368,7 +32237,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t (/test/parallel/test-child-process-spawn-typeerror.js:81:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-child-process-spawn-typeerror.js:80:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "NVALID_ARG_TYPE\"\n\n at normalizeSpawnArguments (node:child_process:435:29)\n at spawn (node:child_process:12:36)\n at (/test/parallel/test-child-process-spawn-typeerror.js:81:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-child-process-spawn-typeerror.js:80:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32505,7 +32374,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-spawnsync-kill-signal.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | ReflectApply,\n12 | StringPrototypeSlice,\n13 | Symbol,\n14 | SymbolDispose,\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-spawnsync-kill-signal.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32590,7 +32459,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-spawnsync-shell.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | ReflectApply,\n12 | StringPrototypeSlice,\n13 | Symbol,\n14 | SymbolDispose,\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-spawnsync-shell.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32648,7 +32517,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "assert:338:7)\n at throws (node:assert:428:33)\n at fail (/test/parallel/test-child-process-spawnsync-validation-errors.js:21:10)\n at (/test/parallel/test-child-process-spawnsync-validation-errors.js:67:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": ")\n at (/test/parallel/test-child-process-spawnsync-validation-errors.js:22:5)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at fail (/test/parallel/test-child-process-spawnsync-validation-errors.js:21:10)\n at (/test/parallel/test-child-process-spawnsync-validation-errors.js:67:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -32866,7 +32735,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ile descriptor as stdio[0] is not yet implemented in Bun\n at nodeToBun (node:child_process:933:11)\n at map (1:11)\n at spawn (node:child_process:696:142)\n at spawn (node:child_process:18:39)\n at (/test/parallel/test-child-process-stdio-reuse-readable-stdio.js:17:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nerror: Passing a stream.Readable without an underlying file descriptor as stdio[0] is not yet implemented in Bun\n at nodeToBun (node:child_process:933:11)\n at map (1:11)\n at spawn (node:child_process:696:142)\n at spawn (node:child_process:18:39)\n at (/test/parallel/test-child-process-stdio-reuse-readable-stdio.js:17:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33030,7 +32899,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-validate-stdio.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | ReflectApply,\n12 | StringPrototypeSlice,\n13 | Symbol,\n14 | SymbolDispose,\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-validate-stdio.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33059,7 +32928,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-windows-hide.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "StringPrototypeSlice,\n13 | Symbol,\n14 | SymbolDispose,\n15 | Uint8Array,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/child_process.js:16:5)\n at (/test/parallel/test-child-process-windows-hide.js:7:7)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [27.00ms]", "retried": true }, "deno": { @@ -33088,7 +32957,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ual: 0,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at requiresArgument (/test/parallel/test-cli-bad-options.js:31:10)\n at /test/parallel/test-cli-bad-options.js:10:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "(r.status, 9);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 9\n\n generatedMessage: true,\n actual: 0,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at requiresArgument (/test/parallel/test-cli-bad-options.js:31:10)\n at /test/parallel/test-cli-bad-options.js:10:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33146,7 +33015,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ll,\n cmd: \"\\\"${ESCAPED_0}\\\" ${ESCAPED_1} --eval \\\"console.log(typeof require);\\\"\",\n\n at genericNodeError (node:child_process:1076:22)\n at exitHandler (node:child_process:111:28)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "m/discord\\n\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-eval.js:108:10\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -33316,7 +33185,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ION\"\n\n at /test/parallel/test-cli-node-print-help-style.js:20:21\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-node-print-help-style.js:20:21\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33384,7 +33253,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "14 | \n15 | const onlyIfNodeOptionsSupport = { skip: process.config.variables.node_without_node_options };\n16 | \n17 | describe('getOptionsAsFlagsFromBinding', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-cli-options-as-flags.js:17:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "kip) getOptionsAsFlagsFromBinding > should extract flags from NODE_OPTIONS environment variable\n(skip) getOptionsAsFlagsFromBinding > should extract flags from config file\n(skip) getOptionsAsFlagsFromBinding > should extract flags from config file and command line\n(skip) getOptionsAsFlagsFromBinding > should extract flags from .env file\n\n 0 pass\n 4 skip\n 1 fail\nRan 5 tests across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -33417,7 +33286,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alse,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertHasWarning (/test/parallel/test-cli-options-negation.js:34:3)\n at /test/parallel/test-cli-options-negation.js:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "r.toString().includes('Buffer() is deprecated'));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertHasWarning (/test/parallel/test-cli-options-negation.js:34:3)\n at /test/parallel/test-cli-options-negation.js:7:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33543,7 +33412,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "from 'node:test';\n5 | \n6 | \n7 | describe('--print with a promise', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-cli-print-promise.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": ": \"\",\n stdout: \"{ then: [Function: then] }\\n\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-print-promise.mjs:130:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) --print with a promise > should handle thenable that rejects [10.02ms]", "retried": true }, "deno": { @@ -33574,7 +33443,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ERR_ASSERTION\"\n\n at /test/parallel/test-cli-syntax-eval.js:12:14\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-syntax-eval.js:12:14\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33605,7 +33474,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-syntax-piped-bad.js:26:3\n at forEach (native:1:11)\n at /test/parallel/test-cli-syntax-piped-bad.js:21:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "tarts with ${stdin}`);\n ^\nAssertionError: starts with var foo bar;\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-syntax-piped-bad.js:26:3\n at forEach (native:1:11)\n at /test/parallel/test-cli-syntax-piped-bad.js:21:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33636,7 +33505,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-syntax-piped-good.js:22:10\n at forEach (native:1:11)\n at /test/parallel/test-cli-syntax-piped-good.js:17:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "more about Bun: https://bun.com/docs\\nJoin our Discord community: https://bun.com/discord\\n\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-cli-syntax-piped-good.js:22:10\n at forEach (native:1:11)\n at /test/parallel/test-cli-syntax-piped-good.js:17:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -33804,7 +33673,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "=> {\n62 | if (c) {\n63 | a.send('QUIT');\n64 | throw new Error(`B exited with ${c}`);\n ^\nerror: B exited with 1\n at (/test/parallel/test-cluster-bind-twice.js:64:17)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rm64)\n59 | }));\n60 | \n61 | b.on('exit', common.mustCall((c) => {\n62 | if (c) {\n63 | a.send('QUIT');\n64 | throw new Error(`B exited with ${c}`);\n ^\nerror: B exited with 1\n at (/test/parallel/test-cluster-bind-twice.js:64:17)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -36106,7 +35975,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "null,\n quux: [ \"quuz\", [Object ...] ],\n},\n expected: {\n foo: [Object ...],\n qux: null,\n quux: [ \"quuz\", [Object ...] ],\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testOriginal (/test/parallel/test-common-must-not-mutate-object-deep.mjs:23:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eratedMessage: true,\n actual: {\n foo: [Object ...],\n qux: null,\n quux: [ \"quuz\", [Object ...] ],\n},\n expected: {\n foo: [Object ...],\n qux: null,\n quux: [ \"quuz\", [Object ...] ],\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testOriginal (/test/parallel/test-common-must-not-mutate-object-deep.mjs:23:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -36139,7 +36008,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": " assert.strictEqual(\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ \"null is not an object (evaluating 'err.code')\"\n- 'console err error'\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-common.js:162:12)", + "tail": "61 | assert.strictEqual(e instanceof Error, true);\n162 | assert.strictEqual(\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ \"null is not an object (evaluating 'err.code')\"\n- 'console err error'\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-common.js:162:12)", "retried": true }, "deno": { @@ -36172,7 +36041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "76eb9c772c4b30...success\\n' +\n '[compile cache] Creating temporary file for cache of /test/fixtures/compile-cache-wrapper.js (CommonJS)... -> /test/.tmp.45/env_dir/v1.4.0-aarch64-34cbb9a40-501/.47d76b073cee07ab-1.5f1953f294e902c3\\n' +\n '...',\n expected: /reading cache from .*env_dir.* for CommonJS .*empty\\.js/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "8ccd90f17c2703...success\\n' +\n '[compile cache] Creating temporary file for cache of /test/fixtures/compile-cache-wrapper.js (CommonJS)... -> /test/.tmp.969/env_dir/v1.4.0-aarch64-34cbb9a40-501/.4b9115cd1b6f7fc-1.1c69aeb9ec198e74\\n' +\n '...',\n expected: /reading cache from .*env_dir.* for CommonJS .*empty\\.js/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -36263,7 +36132,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "mpile_cache/v1.4.0-aarch64-34cbb9a40-501/.80ba60a89d2f336-0.10c591d47389b40e to /test/.tmp.64/build/.compile_cache/v1.4.0-aarch64-34cbb9a40-501/10c591d47389b40e...success\\n' +\n '[compile cache] Clear deserialized cache.\\n' +\n '...',\n expected: /reading cache from .*build[/\\\\]\\.compile_cache.* for CommonJS .*empty\\.js/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "st/fixtures/compile-cache-wrapper-options.js /test/.tmp.972/build/empty.js\",\n\n at stderr (/test/parallel/test-compile-cache-api-options-portable-env.js:48:14)\n at checkOutput (/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/parallel/test-compile-cache-api-options-portable-env.js:26:1", "retried": true }, "deno": { @@ -36296,7 +36165,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "est-compile-cache-api-permission.js:26:3) {\n generatedMessage: true,\n actual: 'dir before enableCompileCache: undefined\\n' +\n 'Compile cache enabled. /test/.tmp.46/compile-cache\\n' +\n 'dir after enableCompileCache: /test/.tmp.46/compile-cache/v1.4.0-aarch64-34cbb9a40-501\\n',\n expected: /Compile cache failed/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "t-compile-cache-api-permission.js:26:3) {\n generatedMessage: true,\n actual: 'dir before enableCompileCache: undefined\\n' +\n 'Compile cache enabled. /test/.tmp.973/compile-cache\\n' +\n 'dir after enableCompileCache: /test/.tmp.973/compile-cache/v1.4.0-aarch64-34cbb9a40-501\\n',\n expected: /Compile cache failed/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -36828,7 +36697,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-compression-decompression-stream.js:14:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "peGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-compression-decompression-stream.js:14:24)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [26.00ms]", "retried": true }, "deno": { @@ -36863,7 +36732,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Options = {\n22 | skip: !process.features.inspector || process.config.variables.node_without_node_options,\n23 | };\n24 | \n25 | test('should handle non existing json', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-config-file.js:25:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "atedMessage: true,\n actual: \"16384\\n\",\n expected: \"10\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-config-file.js:196:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) runtime version checks > should allow $schema with configs [21.30ms]", "retried": true }, "deno": { @@ -36977,7 +36846,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n expected: \"\\u001B[1;1H\\u001B[0J\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at doTest (/test/parallel/test-console-clear.js:17:10)\n at /test/parallel/test-console-clear.js:22:3\n\nBun v1.4.0 (macOS arm64)", + "tail": " Expected values to be strictly equal:\n+ actual - expected\n\n+ ''\n- '\\x1B[1;1H\\x1B[0J'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"\\u001B[1;1H\\u001B[0J\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at doTest (/test/parallel/test-console-clear.js:17:10)\n at /test/parallel/test-console-clear.js:22:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -37008,7 +36877,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 1\\n');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'default: 1\\n'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"default: 1\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-console-count.js:13:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " | \n12 | console.count();\n13 | assert.strictEqual(buf, 'default: 1\\n');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'default: 1\\n'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"default: 1\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-console-count.js:13:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -37344,7 +37213,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tion calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-console-stdio-setters.js:8:54)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-console-stdio-setters.js:9:61)\n\nfhqwhgads", + "tail": "fhqwhgads\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-console-stdio-setters.js:8:54)\nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-console-stdio-setters.js:9:61)\n\nfhqwhgads", "retried": true }, "deno": { @@ -37402,7 +37271,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "│\",\n \"└─────────┴────────┘\", \"\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-console-table.js:20:10)\n at /test/parallel/test-console-table.js:37:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "────┐\", \"│ (index) │ Values │\",\n \"├─────────┼────────┤\", \"│ 0 │ 1 │\",\n \"│ 1 │ 2 │\", \"│ 2 │ 3 │\",\n \"└─────────┴────────┘\", \"\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-console-table.js:20:10)\n at /test/parallel/test-console-table.js:37:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -37914,7 +37783,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "28-gcm', Buffer.alloc(16), Buffer.alloc(n));\n ^\nTypeError: Invalid initialization vector\n code: \"ERR_CRYPTO_INVALID_IV\"\n\n at new Cipheriv (node:crypto:278:21)\n at createCipheriv (node:crypto:329:12)\n at (/test/parallel/test-crypto-cipheriv-decipheriv.js:214:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nabled && n < 12) continue;\n214 | crypto.createCipheriv('aes-128-gcm', Buffer.alloc(16), Buffer.alloc(n));\n ^\nTypeError: Invalid initialization vector\n code: \"ERR_CRYPTO_INVALID_IV\"\n\n at new Cipheriv (node:crypto:278:21)\n at createCipheriv (node:crypto:329:12)\n at (/test/parallel/test-crypto-cipheriv-decipheriv.js:214:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38414,7 +38283,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: The property 'options.privateKey' is invalid. Received { key: , format: \"banana\", type: \"pkcs8\" }\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto-dh-stateless.js:118:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "118 | assert.throws(() => crypto.diffieHellman({\n ^\nTypeError: The property 'options.privateKey' is invalid. Received { key: , format: \"banana\", type: \"pkcs8\" }\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto-dh-stateless.js:118:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38476,7 +38345,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "43:1)\n33 | const d = domain.create();\n34 | d.on('error', common.mustCall(function(err) {\n35 | assert.strictEqual(err, ex);\n36 | }));\n37 | const cb = common.mustCall(function() {\n38 | throw ex;\n ^\nerror: BAM\n at (/test/parallel/test-crypto-domain.js:38:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": " at (/test/parallel/test-crypto-domain.js:43:1)\n33 | const d = domain.create();\n34 | d.on('error', common.mustCall(function(err) {\n35 | assert.strictEqual(err, ex);\n36 | }));\n37 | const cb = common.mustCall(function() {\n38 | throw ex;\n ^\nerror: BAM\n at (/test/parallel/test-crypto-domain.js:38:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38505,7 +38374,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " created)\n52 | });\n53 | }\n54 | \n55 | function three() {\n56 | crypto.pseudoRandomBytes(4, function() {\n57 | throw new Error('pseudoRandomBytes');\n ^\nerror: pseudoRandomBytes\n at (/test/parallel/test-crypto-domains.js:57:42)\n\nBun v1.4.0 (macOS arm64)", + "tail": "d.\n(Use `bun --trace-warnings ...` to show where the warning was created)\n52 | });\n53 | }\n54 | \n55 | function three() {\n56 | crypto.pseudoRandomBytes(4, function() {\n57 | throw new Error('pseudoRandomBytes');\n ^\nerror: pseudoRandomBytes\n at (/test/parallel/test-crypto-domains.js:57:42)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38644,7 +38513,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "is undefined)\n at (/test/parallel/test-crypto-encap-decap.js:19:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto-encap-decap.js:19:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: crypto.encapsulate is not a function. (In 'crypto.encapsulate()', 'crypto.encapsulate' is undefined)\n at (/test/parallel/test-crypto-encap-decap.js:19:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto-encap-decap.js:19:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38677,7 +38546,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "error: Cannot change encoding\n code: \"ERR_INTERNAL_ASSERTION\"\n\n at getDecoder2 (node:crypto:272:31)\n at update (node:crypto:309:43)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto-encoding-validation-error.js:25:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": " 'utf-8', 'utf-8');\n24 | \n25 | assert.throws(\n ^\nerror: Cannot change encoding\n code: \"ERR_INTERNAL_ASSERTION\"\n\n at getDecoder2 (node:crypto:272:31)\n at update (node:crypto:309:43)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto-encoding-validation-error.js:25:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38847,7 +38716,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-crypto-hash-stream-error.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "otypeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-crypto-hash-stream-error.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38988,7 +38857,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": error:06000080:public key routines:OPENSSL_internal:UNSUPPORTED_ALGORITHM\n library: \"public key routines\",\n function: \"OPENSSL_internal\",\n reason: \"UNSUPPORTED_ALGORITHM\",\n code: \"ERR_OSSL_EVP_UNSUPPORTED_ALGORITHM\"\n\n at (/test/parallel/test-crypto-job-error-parity.js:163:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "('dh', { group: 'modp5' });\n ^\nerror: error:06000080:public key routines:OPENSSL_internal:UNSUPPORTED_ALGORITHM\n library: \"public key routines\",\n function: \"OPENSSL_internal\",\n reason: \"UNSUPPORTED_ALGORITHM\",\n code: \"ERR_OSSL_EVP_UNSUPPORTED_ALGORITHM\"\n\n at (/test/parallel/test-crypto-job-error-parity.js:163:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -39021,7 +38890,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rtToContext(port2, context);\n ^\nNotImplementedError: worker_threads.moveMessagePortToContext is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at moveMessagePortToContext (node:worker_threads:490:22)\n at (/test/parallel/test-crypto-key-objects-messageport.js:84:26)", + "tail": "t = createContext();\n84 | const port2moved = moveMessagePortToContext(port2, context);\n ^\nNotImplementedError: worker_threads.moveMessagePortToContext is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at moveMessagePortToContext (node:worker_threads:490:22)\n at (/test/parallel/test-crypto-key-objects-messageport.js:84:26)", "retried": true }, "deno": { @@ -39081,7 +38950,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-crypto-key-objects-to-crypto-key.js:15:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Buffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-crypto-key-objects-to-crypto-key.js:15:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -39114,7 +38983,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rows(\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_CRYPTO_INVALID_JWK\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-crypto-key-objects.js:250:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " JWK where n does not equal p * q should fail.\n250 | assert.throws(\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_CRYPTO_INVALID_JWK\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-crypto-key-objects.js:250:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -40166,7 +40035,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ort: [Function: export],\n symmetricKeySize: [Getter],\n toCryptoKey: [Function: toCryptoKey],\n equals: [Function: equals],\n type: [Getter],\n},\n operator: \"notDeepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-crypto-keyobject-hidden-slots.js:209:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "uals],\n type: [Getter],\n},\n expected: SecretKeyObject {\n export: [Function: export],\n symmetricKeySize: [Getter],\n toCryptoKey: [Function: toCryptoKey],\n equals: [Function: equals],\n type: [Getter],\n},\n operator: \"notDeepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-crypto-keyobject-hidden-slots.js:209:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41057,7 +40926,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "typeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-crypto-sec-level.js:17:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rrayPrototypeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-crypto-sec-level.js:17:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41362,7 +41231,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "otypeOf,\n5 | SafeMap,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/x509.js:7:5)\n at (/test/parallel/test-crypto-x509.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const {\n4 | ObjectSetPrototypeOf,\n5 | SafeMap,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/x509.js:7:5)\n at (/test/parallel/test-crypto-x509.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41391,7 +41260,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tOptions }).setOptions' is undefined)\n at (/test/parallel/test-crypto.js:47:14)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto.js:39:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " setOptions: tls.createSecureContext().context.setOptions }).setOptions()', '({ setOptions: tls.createSecureContext().context.setOptions }).setOptions' is undefined)\n at (/test/parallel/test-crypto.js:47:14)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-crypto.js:39:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41532,7 +41401,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rrayPrototypeSubarray,\n11 | Uint8Array,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/data_url.js:12:5)\n at (/test/parallel/test-data-url.js:8:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rototypeIndexOf,\n 9 | StringPrototypeSlice,\n10 | TypedArrayPrototypeSubarray,\n11 | Uint8Array,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/data_url.js:12:5)\n at (/test/parallel/test-data-url.js:8:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [27.00ms]", "retried": true }, "deno": { @@ -41617,7 +41486,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: internalBinding(\"debug\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-debug-v8-fast-api.js:9:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rnalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"debug\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-debug-v8-fast-api.js:9:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41679,7 +41548,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41799,7 +41668,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41830,7 +41699,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", + "tail": " | reject(new Error(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", "retried": true }, "deno": { @@ -41919,7 +41788,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or: Child exited, code 1 while waiting for />\\s+$/; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": " reject(new Error(message));\n ^\nerror: Child exited, code 1 while waiting for />\\s+$/; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41981,7 +41850,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42043,7 +41912,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 30961]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 30961]: --- stdout ---\n\n[process 30961]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --help\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 11604]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11604]: --- stdout ---\n\n[process 11604]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --help\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42285,7 +42154,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-bound-never-hit.js:4 --expr 1 probe-bound-never-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "pt not found \"inspect\"\n\n[process 11622]: --- stdout ---\n\n[process 11622]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-bound-never-hit.js:4 --expr 1 probe-bound-never-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42318,7 +42187,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "us = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe.js:12 --expr finalValue -- --inspect-port=0 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ript not found \"inspect\"\n\n[process 11624]: --- stdout ---\n\n[process 11624]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe.js:12 --expr finalValue -- --inspect-port=0 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42351,7 +42220,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": --- stdout ---\n\n[process 31227]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --cond x --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "rocess 11626]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11626]: --- stdout ---\n\n[process 11626]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --cond x --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42384,7 +42253,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "us = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 5 --cond index === 1 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ript not found \"inspect\"\n\n[process 11628]: --- stdout ---\n\n[process 11628]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 5 --cond index === 1 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42417,7 +42286,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --cond index === 1 --probe probe-max-hit.js:5 --expr total --cond index === 1 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "stdout ---\n\n[process 11630]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --cond index === 1 --probe probe-max-hit.js:5 --expr total --cond index === 1 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42450,7 +42319,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tatus = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --cond index.missing.member probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " Script not found \"inspect\"\n\n[process 11632]: --- stdout ---\n\n[process 11632]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --cond index.missing.member probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42483,7 +42352,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "31371]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --cond index === 1 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "--\nerror: Script not found \"inspect\"\n\n[process 11634]: --- stdout ---\n\n[process 11634]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --cond index === 1 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42549,7 +42418,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-throwing-getter.js:16 --expr holder.throwingGetter --probe probe-throwing-getter.js:17 --expr markProbesDone() probe-throwing-getter.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "= 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-throwing-getter.js:16 --expr holder.throwingGetter --probe probe-throwing-getter.js:17 --expr markProbesDone() probe-throwing-getter.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42681,7 +42550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process 31865]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 --expr finalValue --json probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "stderr ---\nerror: Script not found \"inspect\"\n\n[process 11646]: --- stdout ---\n\n[process 11646]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 --expr finalValue --json probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42714,7 +42583,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "wd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --preview --probe probe-types.js:17 --expr objectValue --probe probe-types.js:17 --expr arrayValue --probe probe-types.js:17 --expr errorValue probe-types.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "nal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --preview --probe probe-types.js:17 --expr objectValue --probe probe-types.js:17 --expr arrayValue --probe probe-types.js:17 --expr errorValue probe-types.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42780,7 +42649,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe.js:8 --expr index --probe probe.js:8 --expr total --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "-- stdout ---\n\n[process 11652]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe.js:8 --expr index --probe probe.js:8 --expr total --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42813,7 +42682,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "inated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-late-target.mjs:3 --expr value --probe probe-late-target.cjs:5 --expr value probe-late-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "--- stdout ---\n\n[process 11654]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-late-target.mjs:3 --expr value --probe probe-late-target.cjs:5 --expr value probe-late-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42846,7 +42715,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/parallel/test-debugger-probe-launch.js:13:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "0/bin/bun inspect --probe probe.js:12 --expr finalValue -- --not-a-real-node-flag probe.js\",\n\n at stderr (/test/parallel/test-debugger-probe-launch.js:24:12)\n at checkOutput (/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/parallel/test-debugger-probe-launch.js:13:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42879,7 +42748,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-- stdout ---\n\n[process 32026]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --max-hit 1 --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ess 11658]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11658]: --- stdout ---\n\n[process 11658]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --max-hit 1 --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42912,7 +42781,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ---\n\n[process 32069]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-miss.js:99 --expr 42 --max-hit 3 probe-miss.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11660]: --- stdout ---\n\n[process 11660]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-miss.js:99 --expr 42 --max-hit 3 probe-miss.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42945,7 +42814,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 32084]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 10 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "derr ---\nerror: Script not found \"inspect\"\n\n[process 11662]: --- stdout ---\n\n[process 11662]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 10 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42978,7 +42847,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 1 --probe probe-max-hit.js:5 --expr total --max-hit 2 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "s 11664]: --- stdout ---\n\n[process 11664]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 1 --probe probe-max-hit.js:5 --expr total --max-hit 2 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43011,7 +42880,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "---\n\n[process 32118]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe-max-hit.js:5 --expr index --max-hit 2 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ": --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11666]: --- stdout ---\n\n[process 11666]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe-max-hit.js:5 --expr index --max-hit 2 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43044,7 +42913,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 32130]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 2 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "tderr ---\nerror: Script not found \"inspect\"\n\n[process 11668]: --- stdout ---\n\n[process 11668]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-max-hit.js:5 --expr index --max-hit 2 probe-max-hit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43077,7 +42946,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 32213]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-miss.js:99 --expr 42 probe-miss.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "derr ---\nerror: Script not found \"inspect\"\n\n[process 11670]: --- stdout ---\n\n[process 11670]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-miss.js:99 --expr 42 probe-miss.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43110,7 +42979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "32227]: --- stdout ---\n\n[process 32227]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 11672]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11672]: --- stdout ---\n\n[process 11672]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43143,7 +43012,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 32242]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe utils.js:5 --expr b probe-multi-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "derr ---\nerror: Script not found \"inspect\"\n\n[process 11674]: --- stdout ---\n\n[process 11674]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe utils.js:5 --expr b probe-multi-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43176,7 +43045,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-multi-a/utils.js:5 --expr b probe-multi-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ": Script not found \"inspect\"\n\n[process 11676]: --- stdout ---\n\n[process 11676]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-multi-a/utils.js:5 --expr b probe-multi-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43209,7 +43078,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "32329]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-indented.js:6 --expr x probe-indented.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "--\nerror: Script not found \"inspect\"\n\n[process 11678]: --- stdout ---\n\n[process 11678]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-indented.js:6 --expr x probe-indented.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43242,7 +43111,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "339]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 --expr finalValue --inspect-port=0 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "\nerror: Script not found \"inspect\"\n\n[process 11680]: --- stdout ---\n\n[process 11680]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 --expr finalValue --inspect-port=0 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43275,7 +43144,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-script-throws.js:7 --expr 'before-throw' --probe probe-script-throws.js:4 --expr 99 probe-script-throws.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "---\n\n[process 11682]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-script-throws.js:7 --expr 'before-throw' --probe probe-script-throws.js:4 --expr 99 probe-script-throws.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43308,7 +43177,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ymbol,\n26 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/debugger/inspect_probe.js:26:5)\n at (/test/parallel/test-debugger-probe-startup-pause.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| StringPrototypeIncludes,\n22 | StringPrototypeSlice,\n23 | StringPrototypeStartsWith,\n24 | StringPrototypeTrim,\n25 | Symbol,\n26 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/debugger/inspect_probe.js:26:5)\n at (/test/parallel/test-debugger-probe-startup-pause.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43341,7 +43210,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "gnal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-target-syntax-error.js:3 --expr x probe-target-syntax-error.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ound \"inspect\"\n\n[process 11685]: --- stdout ---\n\n[process 11685]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-target-syntax-error.js:3 --expr x probe-target-syntax-error.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43407,7 +43276,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ---\n\n[process 32758]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 11689]: --- stdout ---\n\n[process 11689]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --probe probe.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43440,7 +43309,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:129:32)\n at /test/parallel/test-debugger-probe-timeout.js:13:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " parse (unknown:1:1)\n at assertProbeJson (/test/common/debugger-probe.js:64:56)\n at stdout (/test/parallel/test-debugger-probe-timeout.js:24:5)\n at checkOutput (/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:129:32)\n at /test/parallel/test-debugger-probe-timeout.js:13:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43475,7 +43344,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "gnal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-typescript.ts:9 --expr x --probe probe-typescript.ts:9 --expr y probe-typescript.ts\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ound \"inspect\"\n\n[process 11693]: --- stdout ---\n\n[process 11693]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/fixtures/debugger\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun inspect --json --probe probe-typescript.ts:9 --expr x --probe probe-typescript.ts:9 --expr y probe-typescript.ts\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43539,7 +43408,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", + "tail": " | reject(new Error(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", "retried": true }, "deno": { @@ -43570,7 +43439,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", + "tail": " | reject(new Error(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", "retried": true }, "deno": { @@ -43601,7 +43470,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", + "tail": " | reject(new Error(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)", "retried": true }, "deno": { @@ -43812,7 +43681,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43843,7 +43712,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Tells the user that the port wasn't available\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-debugger-unavailable-port.js:29:12\n at processTicksAndRejections (native:7:39)", + "tail": "s message about reporting this as a bug');\n29 | assert.ok(\n ^\nAssertionError: Tells the user that the port wasn't available\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-debugger-unavailable-port.js:29:12\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -43874,7 +43743,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43936,7 +43805,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror(message));\n ^\nerror: Child exited, code 1 while waiting for /break (?:on start )?in/i; found: undefined\n STDERR: error: Script not found \"inspect\"\n\n at onChildClose (/test/common/debugger.js:88:22)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43967,7 +43836,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "secret mismatch\\b/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-debugger-websocket-secret-mismatch.js:49:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror: Script not found \\\"inspect\\\"\\n\",\n expected: /\\bWebSocket secret mismatch\\b/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-debugger-websocket-secret-mismatch.js:49:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -44103,11 +43972,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "gram';\n4 | import { describe, it } from 'node:test';\n5 | \n6 | describe('dgram.Socket[Symbol.asyncDispose]()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-dgram-async-dispose.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -44305,7 +44172,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "udp4');\n10 | const addr = sock.bindSync({ address: '127.0.0.1', port: 0 });\n ^\nTypeError: sock.bindSync is not a function. (In 'sock.bindSync({ address: \"127.0.0.1\", port: 0 })', 'sock.bindSync' is undefined)\n at (/test/parallel/test-dgram-bind-sync.js:10:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": " when port is 0.\n 8 | {\n 9 | const sock = dgram.createSocket('udp4');\n10 | const addr = sock.bindSync({ address: '127.0.0.1', port: 0 });\n ^\nTypeError: sock.bindSync is not a function. (In 'sock.bindSync({ address: \"127.0.0.1\", port: 0 })', 'sock.bindSync' is undefined)\n at (/test/parallel/test-dgram-bind-sync.js:10:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -44880,7 +44747,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "{\n10 | const sock = dgram.createSocket('udp4');\n11 | sock.connectSync(12345, '127.0.0.1');\n ^\nTypeError: sock.connectSync is not a function. (In 'sock.connectSync(12345, \"127.0.0.1\")', 'sock.connectSync' is undefined)\n at (/test/parallel/test-dgram-connect-sync.js:11:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " needed,\n 8 | // and remoteAddress() is valid immediately.\n 9 | {\n10 | const sock = dgram.createSocket('udp4');\n11 | sock.connectSync(12345, '127.0.0.1');\n ^\nTypeError: sock.connectSync is not a function. (In 'sock.connectSync(12345, \"127.0.0.1\")', 'sock.connectSync' is undefined)\n at (/test/parallel/test-dgram-connect-sync.js:11:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46254,7 +46121,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al 0.\n at (/test/parallel/test-diagnostic-channel-http-response-created.js:10:53)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostic-channel-http-response-created.js:20:52)", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostic-channel-http-response-created.js:10:53)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostic-channel-http-response-created.js:20:52)", "retried": true }, "deno": { @@ -46310,7 +46177,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "est-run-transform-error');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-run-transform-error\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-run-transform-error.js:10:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": "xception)\n 9 | \n10 | const boundedChannel = dc.boundedChannel('test-run-transform-error');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-run-transform-error\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-run-transform-error.js:10:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46343,7 +46210,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "oundedChannel = dc.boundedChannel('test-run-basic');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-run-basic\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-run.js:9:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "');\n6 | \n7 | // Test basic run functionality\n8 | {\n9 | const boundedChannel = dc.boundedChannel('test-run-basic');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-run-basic\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-run.js:9:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46376,7 +46243,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "= dc.boundedChannel('test-scope-throw');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-scope-throw\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope-error.js:10:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Test scope with thrown error\n 9 | {\n10 | const boundedChannel = dc.boundedChannel('test-scope-throw');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-scope-throw\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope-error.js:10:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46409,7 +46276,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "c.boundedChannel('test-nested-basic');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-nested-basic\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope-nested.js:10:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | // Test nested scopes\n 9 | {\n10 | const boundedChannel = dc.boundedChannel('test-nested-basic');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-nested-basic\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope-nested.js:10:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46442,7 +46309,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nel('test-transform-error');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-transform-error\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope-transform-error.js:10:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": "aughtException)\n 9 | \n10 | const boundedChannel = dc.boundedChannel('test-transform-error');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-transform-error\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope-transform-error.js:10:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46475,7 +46342,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "annel = dc.boundedChannel('test-scope-basic');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-scope-basic\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope.js:10:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | // Test basic scope with using\n 9 | {\n10 | const boundedChannel = dc.boundedChannel('test-scope-basic');\n ^\nTypeError: dc.boundedChannel is not a function. (In 'dc.boundedChannel(\"test-scope-basic\")', 'dc.boundedChannel' is undefined)\n at (/test/parallel/test-diagnostics-channel-bounded-channel-scope.js:10:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46508,7 +46375,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-bounded-channel.js:8:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "nnel, 'function');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-bounded-channel.js:8:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46541,7 +46408,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s.js:47:3)\n at (/test/parallel/test-diagnostics-channel-child-process.js:17:5)\n at (/test/parallel/test-diagnostics-channel-child-process.js:39:9)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)", + "tail": "test-diagnostics-channel-child-process.js:15:3)\n at (/test/parallel/test-diagnostics-channel-child-process.js:47:3)\n at (/test/parallel/test-diagnostics-channel-child-process.js:17:5)\n at (/test/parallel/test-diagnostics-channel-child-process.js:39:9)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)", "retried": true }, "deno": { @@ -46570,7 +46437,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "atedMessage, err;\n ^\nAssertionError: Channel must have subscribers\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-diagnostics-channel-gc-maintains-subcriptions.js:17:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": " stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: Channel must have subscribers\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-diagnostics-channel-gc-maintains-subcriptions.js:17:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46599,7 +46466,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "neratedMessage, err;\n ^\nAssertionError: Channel instances must be the same\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-diagnostics-channel-gc-race-condition.js:14:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": " stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: Channel instances must be the same\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-diagnostics-channel-gc-race-condition.js:14:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -46655,7 +46522,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", actual 0.\n at (/test/parallel/test-diagnostics-channel-http-server-start.js:13:50)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http-server-start.js:20:52)", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http-server-start.js:13:50)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http-server-start.js:20:52)", "retried": true }, "deno": { @@ -46684,7 +46551,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http.js:44:52)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http.js:56:53)", + "tail": " 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http.js:32:50)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http.js:44:52)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-http.js:56:53)", "retried": true }, "deno": { @@ -47232,7 +47099,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "queryObjects is not a function. (In 'queryObjects(ctor, { format: \"count\" })', 'queryObjects' is undefined)\n at checkIfCollectableByCounting (/test/common/gc.js:152:24)\n at (/test/parallel/test-diagnostics-channel-memory-leak.js:15:1)", + "tail": " name } = ctor;\n152 | const initialCount = queryObjects(ctor, { format: 'count' });\n ^\nTypeError: queryObjects is not a function. (In 'queryObjects(ctor, { format: \"count\" })', 'queryObjects' is undefined)\n at checkIfCollectableByCounting (/test/common/gc.js:152:24)\n at (/test/parallel/test-diagnostics-channel-memory-leak.js:15:1)", "retried": true }, "deno": { @@ -47261,7 +47128,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[Object ...], [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-module-import-error.js:34:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)", + "tail": " [],\n expected: [\n [Object ...], [Object ...], [Object ...], [Object ...], [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-module-import-error.js:34:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)", "retried": true }, "deno": { @@ -47323,7 +47190,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-module-require-error.js'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...], [Object ...], [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-module-require-error.js:38:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "parentFilename: '/test/parallel/test-diagnostics-channel-module-require-error.js'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...], [Object ...], [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-module-require-error.js:38:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47352,7 +47219,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alue: [Function: validateHeaderValue]\n- }\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...], [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-module-require.js:33:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "derName: [Function: validateHeaderName],\n- validateHeaderValue: [Function: validateHeaderValue]\n- }\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [Object ...], [Object ...]\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-module-require.js:33:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47410,7 +47277,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ics-channel-net.js:77:28)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-net.js:83:23)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)", + "tail": "tual 0.\n at (/test/parallel/test-diagnostics-channel-net.js:77:28)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-net.js:83:23)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)", "retried": true }, "deno": { @@ -47555,7 +47422,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nnel.withStoreScope({ value: 'test' });\n ^\nTypeError: channel.withStoreScope is not a function. (In 'channel.withStoreScope({ value: \"test\" })', 'channel.withStoreScope' is undefined)\n at (/test/parallel/test-diagnostics-channel-run-stores-scope.js:25:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": "etStore(), undefined);\n23 | \n24 | {\n25 | using scope = channel.withStoreScope({ value: 'test' });\n ^\nTypeError: channel.withStoreScope is not a function. (In 'channel.withStoreScope({ value: \"test\" })', 'channel.withStoreScope' is undefined)\n at (/test/parallel/test-diagnostics-channel-run-stores-scope.js:25:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47615,7 +47482,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ");\n ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-symbol-named.js:15:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n15 | assert.strictEqual(Object.hasOwn(channel, '_index'), true);\n ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-symbol-named.js:15:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47706,7 +47573,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at publish (node:diagnostics_channel:86:18)\n at node:diagnostics_channel:239:27\n at wrappedCallback (node:diagnostics_channel:234:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": "g:test:asyncEnd'\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at publish (node:diagnostics_channel:86:18)\n at node:diagnostics_channel:239:27\n at wrappedCallback (node:diagnostics_channel:234:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47816,7 +47683,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "o be strictly equal:\n+ actual - expected\n\n+ undefined\n- false\n\n generatedMessage: true,\n actual: undefined,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-has-subscribers.js:16:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ibers, false);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- false\n\n generatedMessage: true,\n actual: undefined,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-has-subscribers.js:16:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47845,7 +47712,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "'\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at publish (node:diagnostics_channel:86:18)\n at resolve (node:diagnostics_channel:212:84)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ents: { result: [Function (anonymous)] }, 'tracing:test:asyncEnd'\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at publish (node:diagnostics_channel:86:18)\n at resolve (node:diagnostics_channel:212:84)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47901,7 +47768,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n- {\n- foo: 'bar'\n }\n\n generatedMessage: true,\n actual: Promise { },\n expected: {\n foo: \"bar\",\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-promise-non-thenable.js:40:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "rence-equal to \"expected\":\n+ actual - expected\n\n+ Promise {\n+ \n- {\n- foo: 'bar'\n }\n\n generatedMessage: true,\n actual: Promise { },\n expected: {\n foo: \"bar\",\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-promise-non-thenable.js:40:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47965,7 +47832,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " instanceof SpoofedPromise);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-promise-spoofed-constructor.js:50:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "tly so that custom methods remain accessible.\n50 | assert(result instanceof SpoofedPromise);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-promise-spoofed-constructor.js:50:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -47998,7 +47865,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt(result instanceof ResolvedThenable);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-promise-thenable.js:54:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "nable;\n52 | }), input, thisArg, expectedResult);\n53 | \n54 | assert(result instanceof ResolvedThenable);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-diagnostics-channel-tracing-channel-promise-thenable.js:54:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48085,7 +47952,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at mustNotCall (/test/common/index.js:568:12)\n at publish (node:diagnostics_channel:86:18)\n at node:diagnostics_channel:202:20\n at /test/parallel/test-diagnostics-channel-tracing-channel-sync-early-exit.js:18:9\n\nBun v1.4.0 (macOS arm64)", + "tail": "lse,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at publish (node:diagnostics_channel:86:18)\n at node:diagnostics_channel:202:20\n at /test/parallel/test-diagnostics-channel-tracing-channel-sync-early-exit.js:18:9\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48222,165 +48089,14 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st.end', end);\n19 | };\n20 | }\n21 | \n22 | describe('Web Locks diagnostics channel', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-diagnostics-channel-web-locks.js:22:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true - }, - "deno": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "annel ... queued lock request emits start, grant, and end without miss => ext:deno_node/testing.ts:1:21231\nWeb Locks diagnostics channel ... reports callback error in end event => ext:deno_node/testing.ts:1:21231\nWeb Locks diagnostics channel ... stolen lock ends original request with AbortError => ext:deno_node/testing.ts:1:21231\n\nFAILED | 0 passed | 1 failed (5 steps) (36ms)\n\n\nerror: Test failed", - "retried": true - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-diagnostics-channel-worker-threads.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-worker-threads.js:7:39)", - "retried": true - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-diff.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "5 | const assert = require('node:assert');\n6 | \n7 | const { diff } = require('util');\n8 | \n9 | describe('diff', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-diff.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-directory-import.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "tsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\nAssertionError: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: /Did you mean/,\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)", - "retried": true - }, - "deno": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "R_UNSUPPORTED_DIR_IMPORT] Directory import 'file:///test/fixtures/packages/main' is not supported resolving ES modules\"\n\n\n\"TypeError: [ERR_UNSUPPORTED_DIR_IMPORT] Directory import 'file:///test/fixtures/packages/main' is not supported resolving ES modules\"", - "retried": true - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-disable-proto-delete.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ null\n- undefined\n\n generatedMessage: true,\n actual: null,\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-disable-proto-delete.js:11:8\n\nBun v1.4.0 (macOS arm64)", - "retried": true - }, - "deno": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "allel/test-disable-proto-delete.js:11:8)\n at Module._compile (node:module:5:1402)\n at loadMaybeCjs (node:module:5:1884)\n at Object.Module._extensions..js (node:module:5:1550)\n at Module.load (node:module:4:1568)\n at Module._load (node:module:1:24918)\n at file:///test/parallel/test-disable-proto-delete.js:5:26", - "retried": true - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-disable-proto-throw.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": ".throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_PROTO_ACCESS\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-disable-proto-throw.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "t (/test/parallel/test-diagnostics-channel-web-locks.js:144:19)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) Web Locks diagnostics channel > stolen lock ends original request with AbortError [0.33ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [39.00ms]", "retried": true }, "deno": { "pass": false, "timeout": false, "exit": 1, - "tail": "arallel/test-disable-proto-throw.js:12:8)\n at Module._compile (node:module:5:1402)\n at loadMaybeCjs (node:module:5:1884)\n at Object.Module._extensions..js (node:module:5:1550)\n at Module.load (node:module:4:1568)\n at Module._load (node:module:1:24918)\n at file:///test/parallel/test-disable-proto-throw.js:5:26", + "tail": "annel ... queued lock request emits start, grant, and end without miss => ext:deno_node/testing.ts:1:21231\nWeb Locks diagnostics channel ... reports callback error in end event => ext:deno_node/testing.ts:1:21231\nWeb Locks diagnostics channel ... stolen lock ends original request with AbortError => ext:deno_node/testing.ts:1:21231\n\nFAILED | 0 passed | 1 failed (5 steps) (36ms)\n\n\nerror: Test failed", "retried": true }, "node25": { @@ -48389,7 +48105,36 @@ "exit": 0 } }, - "parallel/test-disable-sigusr1.js": { + "parallel/test-diagnostics-channel-worker-threads.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-diagnostics-channel-worker-threads.js:7:39)", + "retried": true + }, + "deno": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, + "parallel/test-diff.js": { "node": { "pass": true, "timeout": false, @@ -48404,7 +48149,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Disabled();\n10 | \n11 | it('should not attach a debugger with SIGUSR1', { skip: common.isWindows }, async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-disable-sigusr1.js:11:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "In 'diff([\"1\", \"2\", \"3\"], [\"1\", \"3\", \"4\"])', 'diff' is undefined)\n at (/test/parallel/test-diff.js:70:20)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) diff > returns the diff for arrays [0.06ms]\n\n 0 pass\n 6 fail\nRan 6 tests across 1 file. [40.00ms]", "retried": true }, "deno": { @@ -48418,6 +48163,126 @@ "exit": 0 } }, + "parallel/test-directory-import.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "tsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\nAssertionError: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: /Did you mean/,\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)", + "retried": true + }, + "deno": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "R_UNSUPPORTED_DIR_IMPORT] Directory import 'file:///test/fixtures/packages/main' is not supported resolving ES modules\"\n\n\n\"TypeError: [ERR_UNSUPPORTED_DIR_IMPORT] Directory import 'file:///test/fixtures/packages/main' is not supported resolving ES modules\"", + "retried": true + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, + "parallel/test-disable-proto-delete.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "trictEqual(Object.prototype.__proto__, undefined);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ null\n- undefined\n\n generatedMessage: true,\n actual: null,\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-disable-proto-delete.js:11:8\n\nBun v1.4.0 (macOS arm64)", + "retried": true + }, + "deno": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "allel/test-disable-proto-delete.js:11:8)\n at Module._compile (node:module:5:1402)\n at loadMaybeCjs (node:module:5:1884)\n at Object.Module._extensions..js (node:module:5:1550)\n at Module.load (node:module:4:1568)\n at Module._load (node:module:1:24918)\n at file:///test/parallel/test-disable-proto-delete.js:5:26", + "retried": true + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, + "parallel/test-disable-proto-throw.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "Object.hasOwn(Object.prototype, '__proto__'));\n11 | \n12 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_PROTO_ACCESS\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-disable-proto-throw.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "retried": true + }, + "deno": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "arallel/test-disable-proto-throw.js:12:8)\n at Module._compile (node:module:5:1402)\n at loadMaybeCjs (node:module:5:1884)\n at Object.Module._extensions..js (node:module:5:1550)\n at Module.load (node:module:4:1568)\n at Module._load (node:module:1:24918)\n at file:///test/parallel/test-disable-proto-throw.js:5:26", + "retried": true + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, + "parallel/test-disable-sigusr1.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "deno": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, "parallel/test-dns-cancel-reverse-lookup.js": { "node": { "pass": true, @@ -48518,7 +48383,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-channel-timeout.js:46:14\n at processTicksAndRejections (native:7:39)\n\nDNSException: queryA ETIMEOUT nodejs.org\n syscall: \"queryA\",\n hostname: \"nodejs.org\",\n errno: 12,\n code: \"ETIMEOUT\"\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "e,\n expected: {\n code: \"ETIMEOUT\",\n name: \"Error\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-channel-timeout.js:46:14\n at processTicksAndRejections (native:7:39)\n\nDNSException: queryA ETIMEOUT nodejs.org\n syscall: \"queryA\",\n hostname: \"nodejs.org\",\n errno: 12,\n code: \"ETIMEOUT\"\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48549,7 +48414,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eneratedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-default-order-ipv4.js:32:12\n at /test/parallel/test-dns-default-order-ipv4.js:39:3", + "tail": "strictEqual(calls.length, callsLength + 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-default-order-ipv4.js:32:12\n at /test/parallel/test-dns-default-order-ipv4.js:39:3", "retried": true }, "deno": { @@ -48578,7 +48443,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eneratedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-default-order-ipv6.js:32:12\n at /test/parallel/test-dns-default-order-ipv6.js:39:3", + "tail": "strictEqual(calls.length, callsLength + 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-default-order-ipv6.js:32:12\n at /test/parallel/test-dns-default-order-ipv6.js:39:3", "retried": true }, "deno": { @@ -48607,7 +48472,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Message: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-default-order-verbatim.js:32:12\n at /test/parallel/test-dns-default-order-verbatim.js:39:3", + "tail": "ual(calls.length, callsLength + 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-default-order-verbatim.js:32:12\n at /test/parallel/test-dns-default-order-verbatim.js:39:3", "retried": true }, "deno": { @@ -48692,7 +48557,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ation }) => {\n116 | getaddrinfoStub = stub;\n117 | assert.deepStrictEqual(await factory(), expectation);\n ^\nDNSException: getaddrinfo ENOTFOUND\n syscall: \"getaddrinfo\",\n errno: 4,\n code: \"ENOTFOUND\"\n\n at async (/test/parallel/test-dns-lookup-promises.js:117:34)", + "tail": "[]\n114 | },\n115 | ].forEach(async ({ stub, factory, expectation }) => {\n116 | getaddrinfoStub = stub;\n117 | assert.deepStrictEqual(await factory(), expectation);\n ^\nDNSException: getaddrinfo ENOTFOUND\n syscall: \"getaddrinfo\",\n errno: 4,\n code: \"ENOTFOUND\"\n\n at async (/test/parallel/test-dns-lookup-promises.js:117:34)", "retried": true }, "deno": { @@ -48781,7 +48646,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ENOENT\",\n message: \"getnameinfo ENOENT 127.0.0.1\",\n syscall: \"getnameinfo\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-lookupService.js:19:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "| \n19 | assert.throws(\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ENOENT\",\n message: \"getnameinfo ENOENT 127.0.0.1\",\n syscall: \"getnameinfo\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-lookupService.js:19:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48810,7 +48675,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ernalBinding('uv');\n14 | const memoryError = new errors.DNSException(UV_EAI_MEMORY, 'fhqwhgads');\n ^\nTypeError: undefined is not a constructor (evaluating 'new errors.DNSException(UV_EAI_MEMORY, \"fhqwhgads\")')\n at (/test/parallel/test-dns-memory-error.js:14:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nternal/test/binding');\n12 | \n13 | const { UV_EAI_MEMORY } = internalBinding('uv');\n14 | const memoryError = new errors.DNSException(UV_EAI_MEMORY, 'fhqwhgads');\n ^\nTypeError: undefined is not a constructor (evaluating 'new errors.DNSException(UV_EAI_MEMORY, \"fhqwhgads\")')\n at (/test/parallel/test-dns-memory-error.js:14:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48895,7 +48760,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "h(() => {});\n30 | \n31 | process.on('exit', () => {\n32 | assert.strictEqual(entries.length, count);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 6\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-dns-perf_hooks.js:32:10)", + "tail": "=> {});\n29 | dns.promises.resolveAny('localhost').then(inc).catch(() => {});\n30 | \n31 | process.on('exit', () => {\n32 | assert.strictEqual(entries.length, count);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 6\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-dns-perf_hooks.js:32:10)", "retried": true }, "deno": { @@ -48953,7 +48818,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 9 | \n10 | // Stub cares to force an error so we can test DNS error code path.\n11 | cares.ChannelWrap.prototype.queryA = () => UV_EPERM;\n ^\nTypeError: undefined is not an object (evaluating 'cares.ChannelWrap.prototype')\n at (/test/parallel/test-dns-resolve-promises.js:11:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "inding('uv');\n 8 | const dnsPromises = require('dns').promises;\n 9 | \n10 | // Stub cares to force an error so we can test DNS error code path.\n11 | cares.ChannelWrap.prototype.queryA = () => UV_EPERM;\n ^\nTypeError: undefined is not an object (evaluating 'cares.ChannelWrap.prototype')\n at (/test/parallel/test-dns-resolve-promises.js:11:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49071,7 +48936,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".throws(\n ^\nTypeError: Expected hostname to be a string for 'resolveNs'.\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at resolveNs (node:dns:537:44)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-resolvens-typeerror.js:33:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "'dns');\n31 | const dnsPromises = dns.promises;\n32 | \n33 | assert.throws(\n ^\nTypeError: Expected hostname to be a string for 'resolveNs'.\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at resolveNs (node:dns:537:44)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-resolvens-typeerror.js:33:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49100,7 +48965,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-resolver-max-timeout.js:20:10\n at forEach (native:1:11)\n at /test/parallel/test-dns-resolver-max-timeout.js:19:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "g expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: /ERR_OUT_OF_RANGE|ERR_INVALID_ARG_TYPE/i,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-resolver-max-timeout.js:20:10\n at forEach (native:1:11)\n at /test/parallel/test-dns-resolver-max-timeout.js:19:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49183,7 +49048,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-set-default-order.js:46:12\n at /test/parallel/test-dns-set-default-order.js:54:3", + "tail": "t.strictEqual(calls.length, callsLength + 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dns-set-default-order.js:46:12\n at /test/parallel/test-dns-set-default-order.js:54:3", "retried": true }, "deno": { @@ -49241,7 +49106,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Failed to set servers: there are pending queries\n code: \"ERR_DNS_SET_SERVERS_FAILED\"\n\n at setServersOn (node:dns:102:24)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-setserver-when-querying.js:17:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ert.throws(resolver.setServers.bind(resolver, localhost), {\n ^\nerror: Failed to set servers: there are pending queries\n code: \"ERR_DNS_SET_SERVERS_FAILED\"\n\n at setServersOn (node:dns:102:24)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-setserver-when-querying.js:17:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49330,7 +49195,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-abort-on-uncaught.js:215:14\n at forEach (native:1:11)\n at /test/parallel/test-domain-abort-on-uncaught.js:204:9\n\nBun v1.4.0 (macOS arm64)", + "tail": "ort-on-uncaught.js:21:19)\n\nBun v1.4.0 (macOS arm64)\n\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-abort-on-uncaught.js:215:14\n at forEach (native:1:11)\n at /test/parallel/test-domain-abort-on-uncaught.js:204:9\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49361,7 +49226,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "require('events');\n7 | const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);\n8 | \n9 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-add-remove.js:9:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n5 | const domain = require('domain');\n6 | const EventEmitter = require('events');\n7 | const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);\n8 | \n9 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-add-remove.js:9:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49390,7 +49255,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " domainEmitter: undefined,\n domainThrown: false,\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-async-id-map-leak.js:27:10\n at node:domain:47:23\n at /test/parallel/test-domain-async-id-map-leak.js:19:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "erCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n domainEmitter: undefined,\n domainThrown: false,\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-async-id-map-leak.js:27:10\n at node:domain:47:23\n at /test/parallel/test-domain-async-id-map-leak.js:19:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49421,7 +49286,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | \n7 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-bind-timeout.js:7:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | \n7 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-bind-timeout.js:7:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49479,7 +49344,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-domain-dep0097.js:10:30)\n\nDebugger listening on ws://127.0.0.1:64467/d1cfdd78-16a8-4e43-a502-38a9110cfe30", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-domain-dep0097.js:10:30)\n\nDebugger listening on ws://127.0.0.1:61787/275375e5-7965-4ef2-a201-4324ce489c7a", "retried": true }, "deno": { @@ -49537,7 +49402,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " require('assert');\n5 | const domain = require('domain');\n6 | const EventEmitter = require('events');\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-ee-implicit.js:8:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | const EventEmitter = require('events');\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-ee-implicit.js:8:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49566,7 +49431,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert = require('assert');\n5 | const domain = require('domain');\n6 | const EventEmitter = require('events');\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-ee.js:8:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | const EventEmitter = require('events');\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-ee.js:8:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49653,7 +49518,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "onst something of [\n14 | 42, null, undefined, false, () => {}, 'string', Symbol('foo'),\n15 | ]) {\n16 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-error-types.js:16:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": "dejs/node/issues/28275 is fixed in debug mode.\n12 | \n13 | for (const something of [\n14 | 42, null, undefined, false, () => {}, 'string', Symbol('foo'),\n15 | ]) {\n16 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-error-types.js:16:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49682,7 +49547,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ners: [Function: rawListeners],\n listenerCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-from-timer.js:36:14\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "oveAllListeners],\n listeners: [Function: listeners],\n rawListeners: [Function: rawListeners],\n listenerCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-from-timer.js:36:14\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49711,7 +49576,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert = require('assert');\n5 | const domain = require('domain');\n6 | const fs = require('fs');\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-fs-enoent-stream.js:8:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | const fs = require('fs');\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-fs-enoent-stream.js:8:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49740,7 +49605,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "() {\n115 | assert.strictEqual(serverCaught, 2);\n116 | assert.strictEqual(clientCaught, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-domain-http-server.js:116:10)", + "tail": "1:50)\n111 | }\n112 | }\n113 | \n114 | process.on('exit', function() {\n115 | assert.strictEqual(serverCaught, 2);\n116 | assert.strictEqual(clientCaught, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 2\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-domain-http-server.js:116:10)", "retried": true }, "deno": { @@ -49769,7 +49634,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pe.propertyIsEnumerable);\n 8 | \n 9 | process.on('warning', common.mustNotCall());\n10 | \n11 | {\n12 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-implicit-binding.js:12:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": "7 | const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);\n 8 | \n 9 | process.on('warning', common.mustNotCall());\n10 | \n11 | {\n12 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-implicit-binding.js:12:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49798,7 +49663,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ");\n27 | const domain = require('domain');\n28 | \n29 | process.on('warning', common.mustNotCall());\n30 | \n31 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-implicit-fs.js:31:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "26 | const assert = require('assert');\n27 | const domain = require('domain');\n28 | \n29 | process.on('warning', common.mustNotCall());\n30 | \n31 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-implicit-fs.js:31:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49829,7 +49694,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ire('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | \n7 | {\n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-intercept.js:8:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": "3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | \n7 | {\n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-intercept.js:8:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49914,7 +49779,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t is similar to test-domain-error-types, but uses a single domain\n 8 | // to emit all errors.\n 9 | \n10 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-multiple-errors.js:10:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | const domain = require('domain');\n 6 | \n 7 | // This test is similar to test-domain-error-types, but uses a single domain\n 8 | // to emit all errors.\n 9 | \n10 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-multiple-errors.js:10:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49997,7 +49862,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "mmon = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | \n7 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-nexttick.js:7:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | \n7 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-nexttick.js:7:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50026,7 +49891,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50055,7 +49920,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50084,7 +49949,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50115,7 +49980,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50146,7 +50011,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50175,7 +50040,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50204,7 +50069,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50235,7 +50100,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50266,7 +50131,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50295,7 +50160,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " instead exited with exit code 1 and signal null\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onExit (/test/common/index.js:302:5)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50324,7 +50189,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[Function: removeAllListeners],\n listeners: [Function: listeners],\n rawListeners: [Function: rawListeners],\n listenerCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-promise.js:85:16", + "tail": "ener],\n off: [Function: removeListener],\n removeAllListeners: [Function: removeAllListeners],\n listeners: [Function: listeners],\n rawListeners: [Function: rawListeners],\n listenerCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-promise.js:54:14", "retried": true }, "deno": { @@ -50552,7 +50417,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "in = require('domain');\n6 | const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-timer.js:8:11)\n\nBun v1.4.0 (macOS arm64)", + "tail": "./common');\n4 | const assert = require('assert');\n5 | const domain = require('domain');\n6 | const isEnumerable = Function.call.bind(Object.prototype.propertyIsEnumerable);\n7 | \n8 | const d = new domain.Domain();\n ^\nTypeError: undefined is not a constructor (evaluating 'new domain.Domain')\n at (/test/parallel/test-domain-timer.js:8:11)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50581,7 +50446,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = require('assert');\n 9 | \n10 | let first = false;\n11 | \n12 | domain.run(common.mustCall(() => {\n13 | setTimeout(() => { throw new Error('FAIL'); }, 1);\n ^\nerror: FAIL\n at (/test/parallel/test-domain-timers-uncaught-exception.js:13:44)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | const assert = require('assert');\n 9 | \n10 | let first = false;\n11 | \n12 | domain.run(common.mustCall(() => {\n13 | setTimeout(() => { throw new Error('FAIL'); }, 1);\n ^\nerror: FAIL\n at (/test/parallel/test-domain-timers-uncaught-exception.js:13:44)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50610,7 +50475,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "row new Error('Timeout UNREFd');\n37 | }, 0).unref();\n38 | \n39 | t = setTimeout(function() {\n40 | clearTimeout(timeout);\n41 | throw new Error('Timeout UNREFd');\n ^\nerror: Timeout UNREFd\n at (/test/parallel/test-domain-timers.js:41:37)\n\nBun v1.4.0 (macOS arm64)", + "tail": "(/test/parallel/test-domain-timers.js:36:37)\n36 | throw new Error('Timeout UNREFd');\n37 | }, 0).unref();\n38 | \n39 | t = setTimeout(function() {\n40 | clearTimeout(timeout);\n41 | throw new Error('Timeout UNREFd');\n ^\nerror: Timeout UNREFd\n at (/test/parallel/test-domain-timers.js:41:37)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50666,7 +50531,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "perator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onChildExited (/test/parallel/test-domain-top-level-error-handler-throw.js:46:14)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "7\n\n generatedMessage: true,\n actual: 1,\n expected: 7,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onChildExited (/test/parallel/test-domain-top-level-error-handler-throw.js:46:14)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50728,7 +50593,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "moveAllListeners],\n listeners: [Function: listeners],\n rawListeners: [Function: rawListeners],\n listenerCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-vm-promise-isolation.js:21:14", + "tail": " [Function: removeListener],\n removeAllListeners: [Function: removeAllListeners],\n listeners: [Function: listeners],\n rawListeners: [Function: rawListeners],\n listenerCount: [Function: listenerCount],\n eventNames: [Function: eventNames],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domain-vm-promise-isolation.js:21:14", "retried": true }, "deno": { @@ -50759,7 +50624,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onChildExited (/test/parallel/test-domain-with-abort-on-uncaught-exception.js:112:13)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eneratedMessage: true,\n actual: 42,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at onChildExited (/test/parallel/test-domain-with-abort-on-uncaught-exception.js:124:18)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50817,7 +50682,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "6 | // Verifies [[ErrorData]]\n27 | assert(Error.isError(myException));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domexception-subclass.js:27:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ceof DOMException);\n25 | assert(myException instanceof Error);\n26 | // Verifies [[ErrorData]]\n27 | assert(Error.isError(myException));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-domexception-subclass.js:27:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -50846,7 +50711,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ures/dotenv/no-final-newline-single-quotes.env';\n14 | \n15 | describe('.env supports edge cases', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-dotenv-edge-cases.js:15:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "(macOS arm64)\\n\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-dotenv-edge-cases.js:147:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) .env supports edge cases > should handle empty value without a newline at the EOF [25.28ms]", "retried": true }, "deno": { @@ -51119,7 +50984,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ing')\n at (/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js:18:37)\n at forEach (1:11)\n at (/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "{i} failed`);\n ^\nTypeError: undefined is not an Object. (evaluating '\"prototype\" in binding')\n at (/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js:18:37)\n at forEach (1:11)\n at (/test/parallel/test-env-newprotomethod-remove-unnecessary-prototypes.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51204,7 +51069,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "aggregateTwoErrors (internal:errors:8:29)'\n\n generatedMessage: true,\n actual: \" at aggregateTwoErrors (internal:errors:8:29)\",\n expected: /^ {4}at Object/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-error-aggregateTwoErrors.js:70:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " match the regular expression /^ {4}at Object/. Input:\n\n' at aggregateTwoErrors (internal:errors:8:29)'\n\n generatedMessage: true,\n actual: \" at aggregateTwoErrors (internal:errors:8:29)\",\n expected: /^ {4}at Object/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-error-aggregateTwoErrors.js:70:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51233,7 +51098,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "put = input.slice(0, i);\n17 | assert.strictEqual(formatList(slicedInput), and.format(slicedInput));\n ^\nTypeError: formatList is not a function. (In 'formatList(slicedInput)', 'formatList' is undefined)\n at (/test/parallel/test-error-format-list.js:17:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "for (let i = 0; i < input.length; i++) {\n16 | const slicedInput = input.slice(0, i);\n17 | assert.strictEqual(formatList(slicedInput), and.format(slicedInput));\n ^\nTypeError: formatList is not a function. (In 'formatList(slicedInput)', 'formatList' is undefined)\n at (/test/parallel/test-error-format-list.js:17:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51291,7 +51156,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "porting.js:66:10\n at /test/parallel/test-error-reporting.js:39:5\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": \"ERR_ASSERTION\"\n\n at /test/parallel/test-error-reporting.js:76:10\n at /test/parallel/test-error-reporting.js:39:5\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51322,7 +51187,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " determineSpecificType } = errorsModule;\n 9 | \n10 | assert.strictEqual(\n11 | determineSpecificType(1n),\n ^\nTypeError: determineSpecificType is not a function. (In 'determineSpecificType(1n)', 'determineSpecificType' is undefined)\n at /test/parallel/test-error-value-type-detection.mjs:11:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "6 | \n 7 | \n 8 | const { determineSpecificType } = errorsModule;\n 9 | \n10 | assert.strictEqual(\n11 | determineSpecificType(1n),\n ^\nTypeError: determineSpecificType is not a function. (In 'determineSpecificType(1n)', 'determineSpecificType' is undefined)\n at /test/parallel/test-error-value-type-detection.mjs:11:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51353,7 +51218,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ";\n5 | const assert = require('assert');\n6 | const { AbortError } = require('internal/errors');\n7 | \n8 | {\n9 | const err = new AbortError();\n ^\nTypeError: undefined is not a constructor (evaluating 'new AbortError')\n at (/test/parallel/test-errors-aborterror.js:9:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": "4 | require('../common');\n5 | const assert = require('assert');\n6 | const { AbortError } = require('internal/errors');\n7 | \n8 | {\n9 | const err = new AbortError();\n ^\nTypeError: undefined is not a constructor (evaluating 'new AbortError')\n at (/test/parallel/test-errors-aborterror.js:9:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51382,7 +51247,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | }\n18 | \n19 | const c = hideStackFrames(function() {\n ^\nTypeError: hideStackFrames is not a function. (In 'hideStackFrames(function() {\n throw Error(\"test\");\n })', 'hideStackFrames' is undefined)\n at (/test/parallel/test-errors-hide-stack-frames.js:19:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": "14 | \n15 | function b() {\n16 | c();\n17 | }\n18 | \n19 | const c = hideStackFrames(function() {\n ^\nTypeError: hideStackFrames is not a function. (In 'hideStackFrames(function() {\n throw Error(\"test\");\n })', 'hideStackFrames' is undefined)\n at (/test/parallel/test-errors-hide-stack-frames.js:19:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51411,7 +51276,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", SystemError, codes } = require('internal/errors');\n6 | \n7 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-frozen-intrinsics.js:7:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "../common');\n4 | const assert = require('assert');\n5 | const { E, SystemError, codes } = require('internal/errors');\n6 | \n7 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-frozen-intrinsics.js:7:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51440,7 +51305,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "stackTraceLimit = value; },\n11 | });\n12 | \n13 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-stackTraceLimit-custom-setter.js:13:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "{\n 9 | get() { return stackTraceLimit; },\n10 | set(value) { stackTraceLimit = value; },\n11 | });\n12 | \n13 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-stackTraceLimit-custom-setter.js:13:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51527,7 +51392,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "aceLimit', { get() { return 0; } });\n8 | \n9 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-stackTraceLimit-has-only-a-getter.js:9:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ternal/errors');\n6 | \n7 | Reflect.defineProperty(Error, 'stackTraceLimit', { get() { return 0; } });\n8 | \n9 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-stackTraceLimit-has-only-a-getter.js:9:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51556,7 +51421,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alue: Error.stackTraceLimit,\n10 | });\n11 | \n12 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-stackTraceLimit-not-writable.js:12:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rty(Error, 'stackTraceLimit', {\n 8 | writable: false,\n 9 | value: Error.stackTraceLimit,\n10 | });\n11 | \n12 | E('ERR_TEST', 'custom message', SystemError);\n ^\nTypeError: E is not a function. (In 'E(\"ERR_TEST\", \"custom message\", SystemError)', 'E' is undefined)\n at (/test/parallel/test-errors-systemerror-stackTraceLimit-not-writable.js:12:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -51585,7 +51450,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " SystemError')\n at (/test/parallel/test-errors-systemerror.js:10:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-errors-systemerror.js:9:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert.throws(\n10 | () => { new SystemError(); },\n ^\nTypeError: undefined is not a constructor (evaluating 'new SystemError')\n at (/test/parallel/test-errors-systemerror.js:10:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-errors-systemerror.js:9:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -52511,7 +52376,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rtionError: Missing expected exception (EvalError).\n generatedMessage: false,\n actual: undefined,\n expected: [class EvalError extends Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-eval-disallow-code-generation-from-strings.js:9:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssert.throws(() => eval('\"eval\"'), EvalError);\n ^\nAssertionError: Missing expected exception (EvalError).\n generatedMessage: false,\n actual: undefined,\n expected: [class EvalError extends Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-eval-disallow-code-generation-from-strings.js:9:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53352,7 +53217,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.throws(\n ^\nTypeError: Cannot access invalid private field (evaluating 'this.#asyncResource')\n at emit (node:events:618:29)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-eventemitter-asyncresource.js:131:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "],\n128 | ]));\n129 | })().then(common.mustCall());\n130 | \n131 | assert.throws(\n ^\nTypeError: Cannot access invalid private field (evaluating 'this.#asyncResource')\n at emit (node:events:618:29)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-eventemitter-asyncresource.js:131:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53380,11 +53245,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ode:assert';\n4 | import { describe, it } from 'node:test';\n5 | \n6 | describe('events.addAbortListener', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-events-add-abort-listener.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -53412,7 +53275,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-events-customevent.js:8:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-events-customevent.js:8:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53441,7 +53304,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eners(ac.signal), 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n10 !== 0\n\n generatedMessage: true,\n actual: 10,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-events-getmaxlisteners.js:23:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ac = new AbortController();\n23 | assert.strictEqual(getMaxListeners(ac.signal), 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n10 !== 0\n\n generatedMessage: true,\n actual: 10,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-events-getmaxlisteners.js:23:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53524,7 +53387,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-events-on-async-iterator.js:9:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-events-on-async-iterator.js:9:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53580,7 +53443,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "olToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-events-static-geteventlisteners.js:4:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-events-static-geteventlisteners.js:4:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53667,7 +53530,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-eventsource.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ".strictEqual(typeof EventSource, 'function');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-eventsource.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -53696,7 +53559,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-eventtarget-brandcheck.js:11:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-eventtarget-brandcheck.js:11:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -54367,11 +54230,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "est');\n4 | const assert = require('node:assert');\n5 | \n6 | test('should correctly stub globalThis.fetch', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-fetch-mock.js:6:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -54426,7 +54287,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sertionError: The input did not match the regular expression /--experimental-ffi/. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /--experimental-ffi/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-ffi-missing-build.js:21:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert.match(stderr, /--experimental-ffi/);\n ^\nAssertionError: The input did not match the regular expression /--experimental-ffi/. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /--experimental-ffi/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-ffi-missing-build.js:21:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -54616,11 +54477,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "t');\n13 | tmpdir.refresh();\n14 | \n15 | const data = 'data';\n16 | \n17 | test('writable stream uncork', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-file-write-stream5.js:17:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -54814,7 +54673,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "de:test');\n11 | \n12 | \n13 | describe('findPackageJSON', () => { // Throws when no arguments are provided\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-find-package-json.js:13:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "export const resolve = async (s, c, n) => n(s);\\\")\\n\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-find-package-json.js:171:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) findPackageJSON > should work within a loader [5.77ms]", "retried": true }, "deno": { @@ -54845,7 +54704,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "6 | const assert = require('assert');\n 7 | const FixedQueue = require('internal/fixed_queue');\n 8 | \n 9 | {\n10 | const queue = new FixedQueue();\n ^\nTypeError: Object is not a constructor (evaluating 'new FixedQueue')\n at (/test/parallel/test-fixed-queue.js:10:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | \n 6 | const assert = require('assert');\n 7 | const FixedQueue = require('internal/fixed_queue');\n 8 | \n 9 | {\n10 | const queue = new FixedQueue();\n ^\nTypeError: Object is not a constructor (evaluating 'new FixedQueue')\n at (/test/parallel/test-fixed-queue.js:10:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -54876,7 +54735,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok (node:assert:91:10)\n at (/test/parallel/test-force-repl-with-eval.js:22:3)", + "tail": " expected: !0,\n22 | message,\n23 | operator: \"==\",\n24 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok (node:assert:91:10)\n at (/test/parallel/test-force-repl-with-eval.js:22:3)", "retried": true }, "deno": { @@ -54907,7 +54766,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "p\\\" for more information.\\n> \",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-force-repl.js:18:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "scord\\n\",\n expected: \"Welcome to Node.js v26.3.0.\\nType \\\".help\\\" for more information.\\n> \",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-force-repl.js:18:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -54967,7 +54826,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "throws(\n ^\nAssertionError: Missing expected exception (TypeError).\n generatedMessage: false,\n actual: undefined,\n expected: [class TypeError extends Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-freeze-intrinsics.js:6:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "common');\n4 | const assert = require('assert');\n5 | \n6 | assert.throws(\n ^\nAssertionError: Missing expected exception (TypeError).\n generatedMessage: false,\n actual: undefined,\n expected: [class TypeError extends Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-freeze-intrinsics.js:6:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -54998,7 +54857,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "jects (node:assert:432:77)\",\n expected: /at async Object\\.access/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-access.js:101:12\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)", + "tail": "async waitForActual (node:assert:357:24)\\n at async assert.rejects (node:assert:432:77)\",\n expected: /at async Object\\.access/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-access.js:101:12\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)", "retried": true }, "deno": { @@ -55029,7 +54888,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(`${cnt++}.out`);\n13 | }\n14 | \n15 | tmpdir.refresh();\n16 | \n17 | test('synchronous version', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-fs-append-file-flush.js:17:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-append-file-flush.js:66:14\n at guarded (internal:shared:114:26)\n(fail) callback version [1.60ms]\n(pass) promise based version [1.46ms]\n\n 1 pass\n 2 fail\nRan 3 tests across 1 file. [38.00ms]", "retried": true }, "deno": { @@ -55143,7 +55002,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "y\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-fs-buffer.js:21:8)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-buffer.js:19:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " | \n19 | assert.throws(\n20 | () => {\n21 | fs.accessSync(true);\n ^\nTypeError: path must be a string or TypedArray\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-fs-buffer.js:21:8)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-buffer.js:19:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -55226,7 +55085,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "67:48)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-chmod.js:146:10)\n at forEach (1:11)\n at (/test/parallel/test-fs-chmod.js:138:37)\n\nBun v1.4.0 (macOS arm64)", + "tail": "errObj);\n ^\nTypeError: path must be a string or TypedArray\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at chmod (node:fs:67:48)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-chmod.js:146:10)\n at forEach (1:11)\n at (/test/parallel/test-fs-chmod.js:138:37)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -55363,7 +55222,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n+ 'EXTENSIONLESS_FORMAT_WASM'\n+ ]\n- []\n\n generatedMessage: false,\n actual: [ \"EXTENSIONLESS_FORMAT_JAVASCRIPT\", \"EXTENSIONLESS_FORMAT_WASM\" ],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-constants.js:77:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "M\n+ actual - expected\n\n+ [\n+ 'EXTENSIONLESS_FORMAT_JAVASCRIPT',\n+ 'EXTENSIONLESS_FORMAT_WASM'\n+ ]\n- []\n\n generatedMessage: false,\n actual: [ \"EXTENSIONLESS_FORMAT_JAVASCRIPT\", \"EXTENSIONLESS_FORMAT_WASM\" ],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-constants.js:77:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -57645,7 +57504,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ernalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-existssync-memleak-longpath.js:11:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-existssync-memleak-longpath.js:11:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -57676,7 +57535,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "The \"cb\" argument must be of type function. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at ensureCallback (node:fs:18:29)\n at fchmod (node:fs:69:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-fchmod.js:30:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t.throws(() => fs.fchmod(1, '123x'), {\n ^\nTypeError: The \"cb\" argument must be of type function. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at ensureCallback (node:fs:18:29)\n at fchmod (node:fs:69:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-fchmod.js:30:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -57788,7 +57647,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-filehandle.js:8:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n !1;\n76 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-filehandle.js:8:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -57897,11 +57756,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "'a/cb/e/f',\n324 | common.isWindows ? null : 'a/symlink/a',\n325 | ],\n326 | };\n327 | \n328 | describe('glob', function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-fs-glob.mjs:328:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -58228,7 +58085,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "95:48)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-mkdir.js:247:12)\n at forEach (1:11)\n at (/test/parallel/test-fs-mkdir.js:245:51)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\nTypeError: The \"recursive\" property must be of type boolean, got string\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at mkdir (node:fs:95:48)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-mkdir.js:247:12)\n at forEach (1:11)\n at (/test/parallel/test-fs-mkdir.js:245:51)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -58425,7 +58282,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-open-flags.js:42:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "22 | StringPrototypeIncludes,\n23 | Symbol,\n24 | TypedArrayPrototypeAt,\n25 | TypedArrayPrototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-open-flags.js:42:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -58588,11 +58445,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "1 | \n12 | describe('File operations with filenames containing surrogate pairs', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-fs-operations-with-surrogate-pairs.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -58647,7 +58502,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r, TypedArray, or DataView\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at appendFile (node:fs/promises:139:99)\n at doAppendStream (/test/parallel/test-fs-promises-appendfile.js:77:20)\n at (/test/parallel/test-fs-promises-appendfile.js:181:9)", + "tail": "ppendFile(dest, stream);\n ^\nTypeError: The \"data\" argument must be of type string or an instance of Buffer, TypedArray, or DataView\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at appendFile (node:fs/promises:139:99)\n at doAppendStream (/test/parallel/test-fs-promises-appendfile.js:77:20)\n at (/test/parallel/test-fs-promises-appendfile.js:181:9)", "retried": true }, "deno": { @@ -58703,7 +58558,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "This,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/promises.js:24:5)\n at (/test/parallel/test-fs-promises-file-handle-aggregate-errors.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SymbolAsyncIterator,\n20 | SymbolDispose,\n21 | SymbolIterator,\n22 | Uint8Array,\n23 | uncurryThis,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/promises.js:24:5)\n at (/test/parallel/test-fs-promises-file-handle-aggregate-errors.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -58734,7 +58589,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sert.rejects (node:assert:432:17)\n at doAppendBufferAndCancel (/test/parallel/test-fs-promises-file-handle-append-file.js:99:18)\n at /test/parallel/test-fs-promises-file-handle-append-file.js:251:9\n at processTicksAndRejections (native:7:39)", + "tail": "le\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at doAppendBufferAndCancel (/test/parallel/test-fs-promises-file-handle-append-file.js:99:18)\n at /test/parallel/test-fs-promises-file-handle-append-file.js:251:9\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -58790,7 +58645,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "urryThis,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/promises.js:24:5)\n at (/test/parallel/test-fs-promises-file-handle-close-errors.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SymbolAsyncIterator,\n20 | SymbolDispose,\n21 | SymbolIterator,\n22 | Uint8Array,\n23 | uncurryThis,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/promises.js:24:5)\n at (/test/parallel/test-fs-promises-file-handle-close-errors.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -58848,7 +58703,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uncurryThis,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/promises.js:24:5)\n at (/test/parallel/test-fs-promises-file-handle-op-errors.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SymbolAsyncIterator,\n20 | SymbolDispose,\n21 | SymbolIterator,\n22 | Uint8Array,\n23 | uncurryThis,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/promises.js:24:5)\n at (/test/parallel/test-fs-promises-file-handle-op-errors.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -58993,7 +58848,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "otMutateObjectDeep({ signal })), {\n ^\nTypeError: The \"signal\" argument must be of type AbortSignal. Received an instance of AbortSignal\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at readFile (node:fs/promises:185:97)\n at doReadAndCancel (/test/parallel/test-fs-promises-file-handle-readFile.js:60:26)", + "tail": "\n60 | await assert.rejects(readFile(fileHandle, common.mustNotMutateObjectDeep({ signal })), {\n ^\nTypeError: The \"signal\" argument must be of type AbortSignal. Received an instance of AbortSignal\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at readFile (node:fs/promises:185:97)\n at doReadAndCancel (/test/parallel/test-fs-promises-file-handle-readFile.js:60:26)", "retried": true }, "deno": { @@ -59267,7 +59122,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-promises-readfile-buffer-option.js:14:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "7 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-promises-readfile-buffer-option.js:14:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -59354,7 +59209,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-promises-readfile.js:10:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": " | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-promises-readfile.js:10:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -59717,7 +59572,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "new Uint8Array();\n12 | \n13 | assert.throws(\n ^\nTypeError: The argument 'buffer' is empty and cannot be written.\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read-empty-buffer.js:13:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n 9 | const fsPromises = fs.promises;\n10 | \n11 | const buffer = new Uint8Array();\n12 | \n13 | assert.throws(\n ^\nTypeError: The argument 'buffer' is empty and cannot be written.\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read-empty-buffer.js:13:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -59881,7 +59736,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-read-position-validation.mjs:100:16\n at guarded (internal:shared:114:26)\n at node:fs:108:13\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-read-position-validation.mjs:100:16\n at guarded (internal:shared:114:26)\n at node:fs:108:13\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -60159,7 +60014,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " garbage collection. This used to be allowed with a deprecation warning but is now considered an error. Please close FileHandle objects explicitly. File descriptor: 14 (/test/.tmp.1810/read_stream_filehandle_test.txt)\n code: \"ERR_INVALID_STATE\"\n\n at onFileHandleCollected (node:fs/promises:119:78)\n\nBun v1.4.0 (macOS arm64)", + "tail": " is not implemented\n code: \"ERR_METHOD_NOT_IMPLEMENTED\"\n\n at new ReadStream (internal:fs/streams:70:31)\n at createReadStream (node:fs:316:10)\n at (/test/parallel/test-fs-read-stream-file-handle.js:57:8)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read-stream-file-handle.js:56:10)", "retried": true }, "deno": { @@ -60350,7 +60205,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "hrows(\n ^\nTypeError: The \"callback\" argument must be of type function. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at read (node:fs:132:29)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read-type.js:13:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " | \n11 | \n12 | // Error must be thrown with string\n13 | assert.throws(\n ^\nTypeError: The \"callback\" argument must be of type function. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at read (node:fs:132:29)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read-type.js:13:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -60406,7 +60261,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| );\n85 | \n86 | assert.throws(\n ^\nTypeError: The \"buffer\" argument must be of type TypedArray. Received an instance of Object\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read.js:86:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "LID_ARG_TYPE' },\n83 | 'throws when options.buffer is null'\n84 | );\n85 | \n86 | assert.throws(\n ^\nTypeError: The \"buffer\" argument must be of type TypedArray. Received an instance of Object\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-read.js:86:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -60462,7 +60317,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-readSync-position-validation.mjs:86:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "ync = fs.openSync(filepath, 'r');\n86 | assert.throws(\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-readSync-position-validation.mjs:86:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -60544,11 +60399,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "et = require('node:net');\n8 | \n9 | test('readdir should not recurse into Unix domain sockets', (t, done) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-fs-readdir-recursive.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -60717,7 +60570,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-readfile-buffer-option.js:10:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-readfile-buffer-option.js:10:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -60806,7 +60659,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "node:fs:165:73)\n at (/test/parallel/test-fs-readfile-error.js:58:14)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-readfile-error.js:57:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " },\n ^\nTypeError: path must be a string or a file descriptor\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at readFile (node:fs:165:73)\n at (/test/parallel/test-fs-readfile-error.js:58:14)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-readfile-error.js:57:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -60967,11 +60820,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "('utf8'),\n22 | );\n23 | }\n24 | \n25 | describe('fs.readFileSync utf8 simdutf dispatch', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-fs-readfile-utf8-fast-path.js:25:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -61625,11 +61476,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "uire('node:fs');\n7 | const tmpdir = require('../common/tmpdir');\n8 | \n9 | test('fs.stat should throw AbortError when called with an already aborted AbortSignal', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-fs-stat-abort-test.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -61744,7 +61593,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t (/test/common/index.js:726:28)\n at forEach (native:1:11)\n at expectWarning (/test/common/index.js:725:28)\n at (/test/parallel/test-fs-stat.js:175:10)", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at (/test/common/index.js:726:28)\n at forEach (native:1:11)\n at expectWarning (/test/common/index.js:725:28)\n at (/test/parallel/test-fs-stat.js:175:10)", "retried": true }, "deno": { @@ -62180,7 +62029,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-sync-fd-leak.js:44:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "!1;\n76 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-fs-sync-fd-leak.js:44:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -62321,7 +62170,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-truncate.js:184:12)\n at forEach (1:11)\n at (/test/parallel/test-fs-truncate.js:173:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "on. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at ensureCallback (node:fs:18:29)\n at ftruncate (node:fs:83:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-truncate.js:184:12)\n at forEach (1:11)\n at (/test/parallel/test-fs-truncate.js:173:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -62377,7 +62226,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-util-validateoffsetlength.js:9:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "22 | StringPrototypeIncludes,\n23 | Symbol,\n24 | TypedArrayPrototypeAt,\n25 | TypedArrayPrototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-util-validateoffsetlength.js:9:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -62406,7 +62255,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Includes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-utils-get-dirents.js:5:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "22 | StringPrototypeIncludes,\n23 | Symbol,\n24 | TypedArrayPrototypeAt,\n25 | TypedArrayPrototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-utils-get-dirents.js:5:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -63033,7 +62882,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n13 | Symbol,\n14 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/watchers.js:14:5)\n at (/test/parallel/test-fs-watch-recursive-delete-race.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "9 | ObjectDefineProperty,\n10 | ObjectSetPrototypeOf,\n11 | PromiseWithResolvers,\n12 | RegExpPrototypeExec,\n13 | Symbol,\n14 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/watchers.js:14:5)\n at (/test/parallel/test-fs-watch-recursive-delete-race.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -63417,7 +63266,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "peIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-watchfile-bigint.js:8:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "22 | StringPrototypeIncludes,\n23 | Symbol,\n24 | TypedArrayPrototypeAt,\n25 | TypedArrayPrototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-fs-watchfile-bigint.js:8:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -63610,7 +63459,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e(`${cnt++}.out`);\n13 | }\n14 | \n15 | tmpdir.refresh();\n16 | \n17 | test('synchronous version', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-fs-write-file-flush.js:17:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-write-file-flush.js:66:14\n at guarded (internal:shared:114:26)\n(fail) callback version [1.50ms]\n(pass) promise based version [1.34ms]\n\n 1 pass\n 2 fail\nRan 3 tests across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -63855,7 +63704,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "udes(needle);\n27 | if (!ok) console.error(haystack);\n28 | assert(ok);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-write-sigxfsz.js:28:3\n\nBun v1.4.0 (macOS arm64)", + "tail": ": EFBIG: file too large, write';\n26 | const ok = haystack.includes(needle);\n27 | if (!ok) console.error(haystack);\n28 | assert(ok);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-write-sigxfsz.js:28:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -63886,7 +63735,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ymous> (/test/parallel/test-fs-write-stream-autoclose-option.js:59:36)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-write-stream-autoclose-option.js:59:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ypeError: undefined is not an object (evaluating 'this._writableState')\n at get (internal:fs/streams:428:31)\n at (/test/parallel/test-fs-write-stream-autoclose-option.js:59:36)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-fs-write-stream-autoclose-option.js:59:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -63995,11 +63844,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " buffer);\n12 | };\n13 | \n14 | describe('WriteStream EAGAIN', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-fs-write-stream-eagain.mjs:14:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -64161,11 +64008,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " tmpdir.resolve(`${cnt++}.out`);\n13 | }\n14 | \n15 | tmpdir.refresh();\n16 | \n17 | test('validation', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-fs-write-stream-flush.js:17:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -64355,7 +64200,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", undefined);\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to:\n\nundefined\n generatedMessage: true,\n actual: undefined,\n expected: undefined,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-write.js:45:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "his;\n44 | \n45 | assert.notStrictEqual(createExternalizableString, undefined);\n ^\nAssertionError: Expected \"actual\" to be strictly unequal to:\n\nundefined\n generatedMessage: true,\n actual: undefined,\n expected: undefined,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-fs-write.js:45:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -64548,7 +64393,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:27)\n at get (node:http:12:20)\n at getAll (/test/parallel/test-gc-http-client-connaborted.js:31:20)\n at (/test/parallel/test-gc-http-client-connaborted.js:24:5)", + "tail": " at connect (node:net:1014:30)\n at createSocket (node:_http_agent:148:40)\n at addRequest (node:_http_agent:125:22)\n at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:27)\n at get (node:http:12:20)\n at getAll (/test/parallel/test-gc-http-client-connaborted.js:31:20)\n at (/test/parallel/test-gc-http-client-connaborted.js:24:5)", "retried": true }, "deno": { @@ -64606,7 +64451,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-suite/test/common/gc.js:24:11)\n at nextTick (native:45:20)\n at maybeReadMore (internal:streams/readable:406:52)\n at addChunk (internal:streams/readable:279:16)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at _write (internal:streams/duplexpair:24:27)\n at writeOrBuffer (internal:streams/writable:285:70)\n at (internal:streams/writable:251:16)", + "tail": "orpus>/test/common/gc.js:24:11)\n at nextTick (native:45:20)\n at maybeReadMore (internal:streams/readable:406:52)\n at addChunk (internal:streams/readable:279:16)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at _write (internal:streams/duplexpair:24:27)\n at writeOrBuffer (internal:streams/writable:285:70)\n at (internal:streams/writable:251:16)", "retried": true }, "deno": { @@ -64635,7 +64480,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lse\n35 | assert.fail('stderr.write should be called only once');\n ^\nAssertionError: stderr.write should be called only once\n at fail (node:assert:77:12)\n at (/test/parallel/test-global-console-exists.js:35:12)\n at writeOut (3:20)\n at onWarning (13:28)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t-call-assert\n33 | assert.match(data, leakWarning);\n34 | else\n35 | assert.fail('stderr.write should be called only once');\n ^\nAssertionError: stderr.write should be called only once\n at fail (node:assert:77:12)\n at (/test/parallel/test-global-console-exists.js:35:12)\n at writeOut (3:20)\n at onWarning (13:28)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -64664,7 +64509,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-global-customevent.js:6:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-global-customevent.js:6:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -64749,7 +64594,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-global-setters.js:20:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ess, _process);\n20 | assert.strictEqual(\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-global-setters.js:20:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -64780,7 +64625,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "totypeGetBuffer,\n23 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/webcrypto.js:23:5)\n at (/test/parallel/test-global-webcrypto-classes.js:10:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": " StringPrototypeSlice,\n19 | StringPrototypeStartsWith,\n20 | SymbolIterator,\n21 | SymbolToStringTag,\n22 | TypedArrayPrototypeGetBuffer,\n23 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/webcrypto.js:23:5)\n at (/test/parallel/test-global-webcrypto-classes.js:10:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -64981,7 +64826,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t cmd = common.isWindows ? 'rundll32' : 'ls';\n12 | const cp = spawn(cmd);\n13 | assert.strictEqual(cp._handle.hasRef(), true);\n ^\nTypeError: undefined is not an object (evaluating 'cp._handle.hasRef')\n at (/test/parallel/test-handle-wrap-hasref.js:13:25)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | const spawn = require('child_process').spawn;\n11 | const cmd = common.isWindows ? 'rundll32' : 'ls';\n12 | const cp = spawn(cmd);\n13 | assert.strictEqual(cp._handle.hasRef(), true);\n ^\nTypeError: undefined is not an object (evaluating 'cp._handle.hasRef')\n at (/test/parallel/test-handle-wrap-hasref.js:13:25)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65012,7 +64857,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":79:22)\\n at /[eval]:1:34\\n\\nBun v1.4.0 (macOS arm64)\\n\",\n\n at genericNodeError (node:child_process:1076:13)\n at exitHandler (node:child_process:111:28)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ALID_MODULE\\\"\\n\\n at internalBinding (internal:test/binding:79:22)\\n at /[eval]:1:34\\n\\nBun v1.4.0 (macOS arm64)\\n\",\n\n at genericNodeError (node:child_process:1076:13)\n at exitHandler (node:child_process:111:28)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65072,7 +64917,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-dir-absolute.js:45:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": ".children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-dir-absolute.js:45:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65103,7 +64948,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-dir-name.js:48:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "root.children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-dir-name.js:48:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65134,7 +64979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-dir-relative.js:44:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": ".children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-dir-relative.js:44:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65165,7 +65010,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Equal(profiles.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-heap-prof-exec-argv.js:37:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "st profiles = getHeapProfiles(tmpdir.path);\n37 | assert.strictEqual(profiles.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-heap-prof-exec-argv.js:37:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65196,7 +65041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ndFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-exit.js:40:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t = root.children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-exit.js:40:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65227,7 +65072,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tEqual(profiles.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 2\n\n generatedMessage: true,\n actual: 1,\n expected: 2,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-heap-prof-interval.js:43:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | const profiles = getHeapProfiles(dir);\n43 | assert.strictEqual(profiles.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 2\n\n generatedMessage: true,\n actual: 1,\n expected: 2,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-heap-prof-interval.js:43:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65287,7 +65132,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-loop-drained.js:40:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": ".children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-loop-drained.js:40:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65318,7 +65163,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ndFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-name.js:42:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t = root.children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-name.js:42:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65349,7 +65194,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "FirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-sigint.js:42:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "= root.children.find(\n ^\nTypeError: undefined is not an object (evaluating 'root.children')\n at findFirstFrameInNode (/test/common/prof.js:15:17)\n at findFirstFrame (/test/common/prof.js:33:17)\n at verifyFrames (/test/common/prof.js:38:28)\n at (/test/parallel/test-heap-prof-sigint.js:42:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -65380,7 +65225,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "actly 8, actual 0.\n at (/test/parallel/test-heapdump-async-hooks-init-promise.js:12:31)\nMismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-heapdump-async-hooks-init-promise.js:34:26)", + "tail": "Mismatched function calls. Expected exactly 8, actual 0.\n at (/test/parallel/test-heapdump-async-hooks-init-promise.js:12:31)\nMismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-heapdump-async-hooks-init-promise.js:34:26)", "retried": true }, "deno": { @@ -65411,7 +65256,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "err.includes('ERR_WORKER_OUT_OF_MEMORY'));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-heapsnapshot-near-heap-limit-by-api-in-worker.js:36:5\n\nBun v1.4.0 (macOS arm64)", + "tail": " OOM callback\n35 | // becomes effective.\n36 | assert(stderr.includes('ERR_WORKER_OUT_OF_MEMORY'));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-heapsnapshot-near-heap-limit-by-api-in-worker.js:36:5\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -67460,7 +67305,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed values to be strictly equal:\n\n65536 !== 131072\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-http-client-highwatermark.js:38:12)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "[kHighWaterMark], hwm);\n ^\nAssertionError: Expected values to be strictly equal:\n\n65536 !== 131072\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-http-client-highwatermark.js:38:12)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -67493,7 +67338,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".js:32:27)\n at createSocket (node:_http_agent:148:40)\n at addRequest (node:_http_agent:125:22)\n at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:10)\n at get (node:http:12:20)\n at (/test/parallel/test-http-client-immediate-error.js:38:6)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nymous> (/test/parallel/test-http-client-immediate-error.js:32:27)\n at createSocket (node:_http_agent:148:40)\n at addRequest (node:_http_agent:125:22)\n at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:10)\n at get (node:http:12:20)\n at (/test/parallel/test-http-client-immediate-error.js:38:6)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -69239,7 +69084,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-dump-req-when-res-ends.js:10:10\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-dump-req-when-res-ends.js:10:10\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -69843,7 +69688,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ion: close\\r\\n\\r\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-header-overflow.js:39:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "pected: \"HTTP/1.1 431 Request Header Fields Too Large\\r\\nConnection: close\\r\\n\\r\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-header-overflow.js:39:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -70995,7 +70840,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: t.bind is not a function. (In 't.bind(\"127.0.0.2\", 0)', 't.bind' is undefined)\n at hasMultiLocalhost (/test/common/net.js:24:17)\n at (/test/parallel/test-http-localaddress.js:26:6)\n\nBun v1.4.0 (macOS arm64)", + "tail": " = internalBinding('tcp_wrap');\n23 | const t = new TCP(TCPConstants.SOCKET);\n24 | const ret = t.bind('127.0.0.2', 0);\n ^\nTypeError: t.bind is not a function. (In 't.bind(\"127.0.0.2\", 0)', 't.bind' is undefined)\n at hasMultiLocalhost (/test/common/net.js:24:17)\n at (/test/parallel/test-http-localaddress.js:26:6)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -71134,7 +70979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "deHTTPResponse] {},\n Symbol(fakeSocket): [Circular *3],\n Symbol(closeCallback): [Function: onClose]\n}\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)", + "tail": "nction: onServerResponseClose]\n },\n Symbol(kOutHeaders): null,\n Symbol(errored): null,\n Symbol(kHighWaterMark): 65536,\n Symbol(kRejectNonStandardBodyWrites): false,\n Symbol(kLenientValidation): undefined,\n Symbol(headerState): 0,\n Symbol(pendingCallbacks): [],\n Symbol(handle): Object [NodeHTTPResponse] {},\n Symbol(fakeSocket): [Circular *3],\n Symbol(closeCallback): [Function: onClose]\n}", "retried": true }, "deno": { @@ -71194,7 +71039,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-http-max-http-headers.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | ArrayPrototypeSort,\n 6 | ObjectEntries,\n 7 | ObjectFromEntries,\n 8 | ObjectKeys,\n 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-http-max-http-headers.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -71669,7 +71514,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode: \"ERR_STREAM_ALREADY_FINISHED\"\n\n at unknown:1:1\n at hasServerResponseFinished (internal:http:234:36)\n at node:_http_server:1626:32\n at /test/parallel/test-http-outgoing-end-multiple.js:15:7\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "r:531:22)\n\nerror: Cannot call end after a stream was finished\n code: \"ERR_STREAM_ALREADY_FINISHED\"\n\n at unknown:1:1\n at hasServerResponseFinished (internal:http:234:36)\n at node:_http_server:1626:32\n at /test/parallel/test-http-outgoing-end-multiple.js:15:7\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -72026,7 +71871,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at emit (node:events:118:23)\n at node:_http_server:1676:16\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "llel/test-http-outgoing-writableFinished.js:116\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at emit (node:events:118:23)\n at node:_http_server:1676:16\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -72312,7 +72157,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http_parser\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http-parser-timeout-reset.js:7:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http_parser\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http-parser-timeout-reset.js:7:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -72449,7 +72294,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":${port}/`);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'http://localhost/'\n- 'http://localhost:60675/'\n ^\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-http-perf_hooks.js:70:14)", + "tail": " assert.strictEqual(entry.detail.req.url, `http://localhost:${port}/`);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'http://localhost/'\n- 'http://localhost:63662/'\n ^\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-http-perf_hooks.js:70:14)", "retried": true }, "deno": { @@ -72675,7 +72520,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\"X-baR\", \"OyOyOyO\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-raw-headers.js:63:12\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": [ \"x-bAr\", \"yOyOyOy\", \"x-baR\", \"OyOyOyO\", \"X-bAr\", \"yOyOyOy\", \"X-baR\", \"OyOyOyO\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-raw-headers.js:63:12\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -72785,7 +72630,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 'req.client._events.close.forEach((fn) => {\n fn.bind(req)();\n })', 'req.client._events.close.forEach' is undefined)\n at (/test/parallel/test-http-req-close-robust-from-tampering.js:10:28)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "peError: req.client._events.close.forEach is not a function. (In 'req.client._events.close.forEach((fn) => {\n fn.bind(req)();\n })', 'req.client._events.close.forEach' is undefined)\n at (/test/parallel/test-http-req-close-robust-from-tampering.js:10:28)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -73165,7 +73010,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-request-signal.js:35:14\n at emit (node:events:118:23)\n at emitCloseNT (internal:streams/destroy:78:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "y equal:\n\ntrue !== false\n\n generatedMessage: true,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-request-signal.js:35:14\n at emit (node:events:118:23)\n at emitCloseNT (internal:streams/destroy:78:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -73974,7 +73819,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d function calls. Expected at least 1, actual 0.\n at onGC (/test/common/gc.js:23:18)\n at (/test/parallel/test-http-server-connections-checking-leak.js:19:3)\nMismatched function calls. Expected at least 1, actual 0.", + "tail": "function calls. Expected at least 1, actual 0.\n at onGC (/test/common/gc.js:23:18)\n at (/test/parallel/test-http-server-connections-checking-leak.js:19:3)\nMismatched function calls. Expected at least 1, actual 0.\n at onGC (/test/common/gc.js:23:18)\n at (/test/parallel/test-http-server-connections-checking-leak.js:19:3)", "retried": true }, "deno": { @@ -74418,7 +74263,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-suite/test/common/gc.js:24:11)\n at nextTick (native:45:20)\n at resume (internal:streams/readable:586:56)\n at (internal:streams/readable:580:11)\n at (/test/parallel/test-http-server-keepalive-req-gc.js:15:7)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)", + "tail": "t an object (evaluating 'this.trackedId')\n at (/test/common/gc.js:24:11)\n at nextTick (native:45:20)\n at resume (internal:streams/readable:586:56)\n at (internal:streams/readable:580:11)\n at (/test/parallel/test-http-server-keepalive-req-gc.js:15:7)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)", "retried": true }, "deno": { @@ -75045,7 +74890,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted: \"hello world\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-server-unconsume.js:28:16\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ello world'\n\n generatedMessage: false,\n actual: \"\",\n expected: \"hello world\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-server-unconsume.js:28:16\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -76832,7 +76677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-binding.js:10:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n76 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-binding.js:10:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -77050,7 +76895,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "omCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-client-destroy.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-client-destroy.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -77083,7 +76928,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-client-http1-server.js:11:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-client-http1-server.js:11:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -77139,7 +76984,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rnalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-client-onconnect-errors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": "}\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-client-onconnect-errors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -77550,7 +77395,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Code,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-client-socket-destroy.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-client-socket-destroy.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -79126,7 +78971,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: t.bind is not a function. (In 't.bind(\"127.0.0.2\", 0)', 't.bind' is undefined)\n at hasMultiLocalhost (/test/common/net.js:24:17)\n at (/test/parallel/test-http2-connect-options.js:8:6)\n\nBun v1.4.0 (macOS arm64)", + "tail": "internalBinding('tcp_wrap');\n23 | const t = new TCP(TCPConstants.SOCKET);\n24 | const ret = t.bind('127.0.0.2', 0);\n ^\nTypeError: t.bind is not a function. (In 't.bind(\"127.0.0.2\", 0)', 't.bind' is undefined)\n at hasMultiLocalhost (/test/common/net.js:24:17)\n at (/test/parallel/test-http2-connect-options.js:8:6)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -79263,7 +79108,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-create-client-secure-session.js:13:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-create-client-secure-session.js:13:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -79427,7 +79272,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eepStrictEqual (node:assert:152:14)\n at (/test/parallel/test-http2-ping.js:40:10)\n\n[process 71601]: --- stdout ---\n\n[process 71601]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/parallel/test-http2-ping.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "eepStrictEqual (node:assert:152:14)\n at (/test/parallel/test-http2-ping.js:40:10)\n\n[process 13568]: --- stdout ---\n\n[process 13568]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun /test/parallel/test-http2-ping.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -79917,7 +79762,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-info-headers-errors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-info-headers-errors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -79975,7 +79820,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "24 | Uint8Array,\n25 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/core.js:25:5)\n at (/test/parallel/test-http2-invalid-last-stream-id.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "20 | Symbol,\n21 | SymbolAsyncDispose,\n22 | SymbolDispose,\n23 | Uint32Array,\n24 | Uint8Array,\n25 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/core.js:25:5)\n at (/test/parallel/test-http2-invalid-last-stream-id.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -80504,7 +80349,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-misbehaving-multiplex.js:12:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-misbehaving-multiplex.js:12:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -80533,7 +80378,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ingFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-misc-util.js:13:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-misc-util.js:13:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -80832,7 +80677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Array,\n25 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/core.js:25:5)\n at (/test/parallel/test-http2-options-max-headers-exceeds-nghttp2.js:8:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "20 | Symbol,\n21 | SymbolAsyncDispose,\n22 | SymbolDispose,\n23 | Uint32Array,\n24 | Uint8Array,\n25 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/core.js:25:5)\n at (/test/parallel/test-http2-options-max-headers-exceeds-nghttp2.js:8:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -81006,7 +80851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ameCount);\n ^\nAssertionError: Expected values to be strictly equal:\n\n5 !== 4\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-http2-pack-end-stream-flag.js:40:16)\n at (internal:shared:234:46)\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert.strictEqual(entry.detail.framesReceived, targetFrameCount);\n ^\nAssertionError: Expected values to be strictly equal:\n\n5 !== 4\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-http2-pack-end-stream-flag.js:40:16)\n at (internal:shared:234:46)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -81172,7 +81017,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "vents, [4, 4, 4, 4]);\n ^\nAssertionError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ 0,\n+ 0,\n+ 0,\n+ 0\n- 4,\n- 4,\n- 4,\n- 4\n ]\n\n at innerFail (node:assert:48:32)\n at deepStrictEqual (node:assert:152:14)\n at (/test/parallel/test-http2-ping.js:40:10)", + "tail": "\n39 | process.on('exit', () => {\n40 | assert.deepStrictEqual(events, [4, 4, 4, 4]);\n ^\nAssertionError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ 0,\n+ 0,\n+ 0,\n+ 0\n- 4,\n- 4,\n- 4,\n- 4\n ]\n\n at innerFail (node:assert:48:32)\n at deepStrictEqual (node:assert:152:14)\n at (/test/parallel/test-http2-ping.js:40:10)", "retried": true }, "deno": { @@ -81581,7 +81426,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-respond-errors.js:10:25)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-respond-errors.js:10:25)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -82069,7 +81914,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nternalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-respond-nghttperrors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-respond-nghttperrors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -82125,7 +81970,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ernalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-respond-with-fd-errors.js:18:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-respond-with-fd-errors.js:18:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -82424,7 +82269,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-server-http1-client.js:11:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-server-http1-client.js:11:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -82507,7 +82352,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-server-push-stream-errors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": "77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"http2\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-http2-server-push-stream-errors.js:13:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -82725,7 +82570,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-server-sessionerror.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-server-sessionerror.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -82916,7 +82761,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-server-socket-destroy.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-server-socket-destroy.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -83039,35 +82884,62 @@ } }, "parallel/test-http2-session-cleanup-on-nghttp2-goaway.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true - } - }, - "parallel/test-http2-session-gc-while-write-scheduled.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "deno": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "node25": { + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true + } + }, + "parallel/test-http2-session-gc-while-write-scheduled.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "deno": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, + "parallel/test-http2-session-graceful-close.js": { "node": { "pass": true, "timeout": false, @@ -83094,40 +82966,6 @@ "exit": 0 } }, - "parallel/test-http2-session-graceful-close.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": true, - "timeout": false, - "exit": 0, - "retried": true, - "firstAttempt": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "Mismatched noop function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-http2-session-graceful-close.js:40:30)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)" - } - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, "parallel/test-http2-session-reuse-different-authority.js": { "node": { "pass": true, @@ -83417,7 +83255,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " should not be directly manipulated (e.g. read and written)\n code: \"ERR_HTTP2_NO_SOCKET_MANIPULATION\"\n\n at get (node:http2:855:33)\n at (/test/parallel/test-http2-socket-proxy-destroy.js:33:7)\n at emit (node:events:118:23)\n at emitCloseNT (internal:streams/destroy:78:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n33 | socket.destroy();\n ^\nerror: HTTP/2 sockets should not be directly manipulated (e.g. read and written)\n code: \"ERR_HTTP2_NO_SOCKET_MANIPULATION\"\n\n at get (node:http2:855:33)\n at (/test/parallel/test-http2-socket-proxy-destroy.js:33:7)\n at emit (node:events:118:23)\n at emitCloseNT (internal:streams/destroy:78:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -83915,7 +83753,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-assert-valid-pseudoheader.js:7:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-assert-valid-pseudoheader.js:7:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -83944,7 +83782,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "gFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-asserts.js:8:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-asserts.js:8:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -83973,7 +83811,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "harCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-headers-list.js:15:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-headers-list.js:15:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -84002,7 +83840,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "CharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-nghttp2error.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-nghttp2error.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -84031,7 +83869,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-update-options-buffer.js:11:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ObjectKeys,\n11 | SafeSet,\n12 | String,\n13 | StringFromCharCode,\n14 | Symbol,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/http2/util.js:15:5)\n at (/test/parallel/test-http2-util-update-options-buffer.js:11:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -84334,7 +84172,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "220, 44, 66, 132, 237, 4, 223, 186, 189, 86, 225, 221, 174, 82, 158, 40, 183, 144, ... 841 more ],\n},\n expected: {},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-https-agent-checkserveridentity-reuse.js:75:12\n at processTicksAndRejections (native:7:39)", + "tail": " 2, 130, 1, 1, 0, 212, 86, 50, 10, 251, 32, 211, 130, 112, 147, 220, 44, 66, 132, 237, 4, 223, 186, 189, 86, 225, 221, 174, 82, 158, 40, 183, 144, ... 841 more ],\n},\n expected: {},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-https-agent-checkserveridentity-reuse.js:75:12\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -84450,7 +84288,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "::::::'\n generatedMessage: true,\n actual: \"0.0.0.0:443:::::::[object Object]::::::::::::::\",\n expected: \"0.0.0.0:443:::::::[object Object]::::::::::::::\",\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-https-agent-getname.js:66:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "strictly unequal to:\n\n'0.0.0.0:443:::::::[object Object]::::::::::::::'\n generatedMessage: true,\n actual: \"0.0.0.0:443:::::::[object Object]::::::::::::::\",\n expected: \"0.0.0.0:443:::::::[object Object]::::::::::::::\",\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-https-agent-getname.js:66:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -84512,7 +84350,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ket.getPeerCertificate is not a function. (In 'req.socket.getPeerCertificate()', 'req.socket.getPeerCertificate' is undefined)\n at (/test/parallel/test-https-agent-pfx-object-array-reuse.js:17:22)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "te().subject.CN);\n ^\nTypeError: req.socket.getPeerCertificate is not a function. (In 'req.socket.getPeerCertificate()', 'req.socket.getPeerCertificate' is undefined)\n at (/test/parallel/test-https-agent-pfx-object-array-reuse.js:17:22)\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -85336,7 +85174,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: t.bind is not a function. (In 't.bind(\"127.0.0.2\", 0)', 't.bind' is undefined)\n at hasMultiLocalhost (/test/common/net.js:24:17)\n at (/test/parallel/test-https-localaddress.js:29:6)\n\nBun v1.4.0 (macOS arm64)", + "tail": "= internalBinding('tcp_wrap');\n23 | const t = new TCP(TCPConstants.SOCKET);\n24 | const ret = t.bind('127.0.0.2', 0);\n ^\nTypeError: t.bind is not a function. (In 't.bind(\"127.0.0.2\", 0)', 't.bind' is undefined)\n at hasMultiLocalhost (/test/common/net.js:24:17)\n at (/test/parallel/test-https-localaddress.js:29:6)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -85500,7 +85338,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "= Buffer.alloc(16, 'S');\n21 | const hmac = Buffer.alloc(16, 'H');\n22 | \n23 | server._sharedCreds.context.enableTicketKeyCallback();\n ^\nTypeError: undefined is not an object (evaluating 'server._sharedCreds.context')\n at (/test/parallel/test-https-resume-after-renew.js:23:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "18 | });\n19 | \n20 | const aes = Buffer.alloc(16, 'S');\n21 | const hmac = Buffer.alloc(16, 'H');\n22 | \n23 | server._sharedCreds.context.enableTicketKeyCallback();\n ^\nTypeError: undefined is not an object (evaluating 'server._sharedCreds.context')\n at (/test/parallel/test-https-resume-after-renew.js:23:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -85666,7 +85504,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rallel/test-https-server-connections-checking-leak.js:24:3)\nMismatched function calls. Expected at least 1, actual 0.\n at onGC (/test/common/gc.js:23:18)\n at (/test/parallel/test-https-server-connections-checking-leak.js:24:3)", + "tail": "nction calls. Expected at least 1, actual 0.\n at onGC (/test/common/gc.js:23:18)\n at (/test/parallel/test-https-server-connections-checking-leak.js:24:3)\nMismatched function calls. Expected at least 1, actual 0.\n at onGC (/test/common/gc.js:23:18)\n at (/test/parallel/test-https-server-connections-checking-leak.js:24:3)", "retried": true }, "deno": { @@ -85805,7 +85643,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-https-session-reuse-different-servername.js:98:18\n at processTicksAndRejections (native:7:39)", + "tail": " expected: {\n code: \"UNABLE_TO_VERIFY_LEAF_SIGNATURE\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-https-session-reuse-different-servername.js:98:18\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -85979,7 +85817,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-https-timeout-server-2.js:45:10)\n at emit (node:events:100:22)\n at onServerConnection (node:_http_server:600:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-https-timeout-server-2.js:45:10)\n at emit (node:events:100:22)\n at onServerConnection (node:_http_server:600:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86118,7 +85956,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rr = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"config\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-icu-data-dir.js:7:25)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1;\n76 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"config\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-icu-data-dir.js:7:25)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86255,7 +86093,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nonymous> (/test/parallel/test-inspect-address-in-use.js:38:12)\n at (/test/parallel/test-inspect-address-in-use.js:19:5)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " to be strictly unequal to: null\n at innerFail (node:assert:48:32)\n at notStrictEqual (node:assert:192:14)\n at (/test/parallel/test-inspect-address-in-use.js:38:12)\n at (/test/parallel/test-inspect-address-in-use.js:19:5)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86317,7 +86155,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rue,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testArg (/test/parallel/test-inspect-publish-uid.js:27:10)\n at test (/test/parallel/test-inspect-publish-uid.js:11:9)", + "tail": "nStderr, hasStderr);\n ^\nAssertionError: Expected values to be strictly equal:\n\ntrue !== false\n\n generatedMessage: true,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testArg (/test/parallel/test-inspect-publish-uid.js:27:10)\n at test (/test/parallel/test-inspect-publish-uid.js:11:9)", "retried": true }, "deno": { @@ -86373,7 +86211,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ire('assert');\n14 | const inspector = require('inspector');\n15 | const wsUrl = inspector.url();\n16 | assert(wsUrl.startsWith('ws://'));\n ^\nTypeError: undefined is not an object (evaluating 'wsUrl.startsWith')\n at (/test/parallel/test-inspector-already-activated-cli.js:16:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ctor ---------------------\n11 | }\n12 | \n13 | const assert = require('assert');\n14 | const inspector = require('inspector');\n15 | const wsUrl = inspector.url();\n16 | assert(wsUrl.startsWith('ws://'));\n ^\nTypeError: undefined is not an object (evaluating 'wsUrl.startsWith')\n at (/test/parallel/test-inspector-already-activated-cli.js:16:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86402,7 +86240,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-async-call-stack-abort.js:35:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "| assert.strictEqual(proc.stderr.includes(eyecatcher), true);\n ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-async-call-stack-abort.js:35:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86433,7 +86271,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-inspector-async-call-stack.js:10:59)\n\nBun v1.4.0 (macOS arm64)", + "tail": "7 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-inspector-async-call-stack.js:10:59)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86464,7 +86302,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctor (call inspector.open() first)\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at test (/test/parallel/test-inspector-async-context-brk.js:29:11)\n at (/test/parallel/test-inspector-async-context-brk.js:54:1)", + "tail": "('Debugger.enable');\n ^\nerror: Inspector error -32000: Inspector method \"Debugger.enable\" requires an active inspector (call inspector.open() first)\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at test (/test/parallel/test-inspector-async-context-brk.js:29:11)\n at (/test/parallel/test-inspector-async-context-brk.js:54:1)", "retried": true }, "deno": { @@ -86557,7 +86395,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/binding:80:49)\n[err] at waitUntilDebugged (/[eval]:7:8)\n[err] \n[err] Bun v1.4.0 (macOS arm64)\n[err] \nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-inspector-async-hook-setup-at-signal.js:87:24)", + "tail": " ^\n[err] error: internalBinding(\"inspector\") is not implemented in Bun\n[err] at internalBinding (internal:test/binding:80:49)\n[err] at waitUntilDebugged (/[eval]:7:8)\n[err] \n[err] \n[err] Bun v1.4.0 (macOS arm64)\n[err] \nMismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-inspector-async-hook-setup-at-signal.js:87:24)", "retried": true }, "deno": { @@ -86648,7 +86486,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ew Promise(waitForWarningSkipAsyncStackTraces);\n54 | session.post('Console.enable', () => { throw error; });\n ^\nerror: We expect this\n at (/test/parallel/test-inspector-bindings.js:54:48)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "log('Expecting warning to be emitted');\n53 | const promise = new Promise(waitForWarningSkipAsyncStackTraces);\n54 | session.post('Console.enable', () => { throw error; });\n ^\nerror: We expect this\n at (/test/parallel/test-inspector-bindings.js:54:48)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86768,7 +86606,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ws://127.0.0.1:51322/999b582c-97ca-4a05-93c2-0966c46a6e7c\n45 | return applyHandlers(handlers, emitter, args), !0;\n46 | }\n47 | let er;\n48 | if (args.length > 0)\n49 | er = args[0];\n50 | throw er;\n ^\nTypeError: inspector.open() is not supported in workers\n at emitError (node:events:50:13)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ws://127.0.0.1:64971/58d3ae74-8058-4261-a729-790966d8f86d\n45 | return applyHandlers(handlers, emitter, args), !0;\n46 | }\n47 | let er;\n48 | if (args.length > 0)\n49 | er = args[0];\n50 | throw er;\n ^\nTypeError: inspector.open() is not supported in workers\n at emitError (node:events:50:13)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86797,7 +86635,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | throw e;\n ^\nerror: Expected values to be strictly equal:\n\n1 !== 2\n\n at (/test/parallel/test-inspector-connect-main-thread.js:51:13)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " worker.on('error', (e) => {\n50 | console.error(e);\n51 | throw e;\n ^\nerror: Expected values to be strictly equal:\n\n1 !== 2\n\n at (/test/parallel/test-inspector-connect-main-thread.js:51:13)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86855,7 +86693,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctor notification\n28 | \n29 | session.disconnect();\n30 | assert.strictEqual(basename(topFrame.url), basename(__filename));\n ^\nTypeError: undefined is not an object (evaluating 'topFrame.url')\n at (/test/parallel/test-inspector-console-top-frame.js:30:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t('Runtime.enable');\n26 | \n27 | logMessage(); // Triggers Inspector notification\n28 | \n29 | session.disconnect();\n30 | assert.strictEqual(basename(topFrame.url), basename(__filename));\n ^\nTypeError: undefined is not an object (evaluating 'topFrame.url')\n at (/test/parallel/test-inspector-console-top-frame.js:30:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -86944,9 +86782,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "led');\n17 | `;\n18 | \n19 | test('inspector async hooks should not crash in debug build', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-inspector-debug-async-hook.js:19:1)\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -87037,7 +86875,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "wd: \"/test/.tmp.2781\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --inspect=0 --experimental-storage-inspection --localstorage-file=./localstorage.db /test/fixtures/test-inspector-dom-storage.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "process 15003]: --- stdout ---\n\n[process 15003]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.2781\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --inspect=0 --experimental-storage-inspection --localstorage-file=./localstorage.db /test/fixtures/test-inspector-dom-storage.mjs\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87070,7 +86908,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-emit-protocol-event-errors.js:484:17)\n at (/test/parallel/test-inspector-emit-protocol-event-errors.js:502:3)", + "tail": "sn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-emit-protocol-event-errors.js:484:17)\n at (/test/parallel/test-inspector-emit-protocol-event-errors.js:502:3)", "retried": true }, "deno": { @@ -87103,7 +86941,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected domain Network to be present in inspector\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-emit-protocol-event.js:155:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "t.fail(`Expected domain ${domain} to be present in inspector`);\n ^\nAssertionError: Expected domain Network to be present in inspector\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-emit-protocol-event.js:155:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87132,7 +86970,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "---\n1 | \n2 | const assert = require('assert');\n3 | const inspector = process.binding('inspector');\n ^\nerror: process.binding(\"inspector\") is not implemented in Bun. If that breaks something, please file an issue and include a reproducible code sample.\n at /[eval]:3:27\n\nBun v1.4.0 (macOS arm64)", + "tail": "992a0e383\n--------------------- Bun Inspector ---------------------\n1 | \n2 | const assert = require('assert');\n3 | const inspector = process.binding('inspector');\n ^\nerror: process.binding(\"inspector\") is not implemented in Bun. If that breaks something, please file an issue and include a reproducible code sample.\n at /[eval]:3:27\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87281,7 +87119,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "{\n31 | hasIdle = true;\n32 | break;\n33 | }\n34 | }\n35 | assert(hasIdle);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-inspector-has-idle.js:35:3)", + "tail": ":41:20)\n\n30 | if (node.callFrame.functionName === '(idle)') {\n31 | hasIdle = true;\n32 | break;\n33 | }\n34 | }\n35 | assert(hasIdle);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-inspector-has-idle.js:35:3)", "retried": true }, "deno": { @@ -87368,7 +87206,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'HeapProfiler.takeHeapSnapshot' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ed(fn, exact) {\n472 | return mustCall(function(err, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'HeapProfiler.takeHeapSnapshot' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87397,7 +87235,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "onymous> function calls. Expected exactly 1, actual 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/parallel/test-inspector-host-warning.js:8:8)\n\nDebugger listening on ws://0.0.0.0:51438/8aa8d8fc-d258-400c-9d9c-1cb3b5ede7a5", + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at expectWarning (/test/common/index.js:723:31)\n at (/test/parallel/test-inspector-host-warning.js:8:8)\n\nDebugger listening on ws://0.0.0.0:65003/04a9af04-73b9-4f85-967d-3a2cd8ff486d", "retried": true }, "deno": { @@ -87459,7 +87297,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ERTION\"\n\n at /test/parallel/test-inspector-invalid-args.js:19:14\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tor: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-invalid-args.js:19:14\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87548,7 +87386,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "1 | session.connect();\n22 | session.post('Runtime.evaluate', { expression: '2 + 2' });\n ^\nerror: Inspector error -32601: 'Runtime.evaluate' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (/test/parallel/test-inspector-module.js:22:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": " message: 'Session is not connected'\n18 | }\n19 | );\n20 | \n21 | session.connect();\n22 | session.post('Runtime.evaluate', { expression: '2 + 2' });\n ^\nerror: Inspector error -32601: 'Runtime.evaluate' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (/test/parallel/test-inspector-module.js:22:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87577,7 +87415,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nspector (call inspector.open() first)\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at test (/test/parallel/test-inspector-multisession-js.js:30:12)\n at (/test/parallel/test-inspector-multisession-js.js:59:1)", + "tail": "ost('Debugger.enable');\n ^\nerror: Inspector error -32000: Inspector method \"Debugger.enable\" requires an active inspector (call inspector.open() first)\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at test (/test/parallel/test-inspector-multisession-js.js:30:12)\n at (/test/parallel/test-inspector-multisession-js.js:59:1)", "retried": true }, "deno": { @@ -87637,7 +87475,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".connect();\n15 | \n16 | test('should emit Network.requestWillBeSent with unicode', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-inspector-network-arbitrary-data.js:16:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "spector/promises:6:12)\n at (/test/parallel/test-inspector-network-arbitrary-data.js:17:17)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) should emit Network.requestWillBeSent with unicode [1.49ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [56.00ms]", "retried": true }, "deno": { @@ -87666,7 +87504,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t unknown:1:1\n at post (node:inspector:296:36)\n at node:inspector/promises:7:17\n at Promise (unknown:1:11)\n at post (node:inspector/promises:6:24)\n at /test/parallel/test-inspector-network-content-type.js:42:21\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", + "tail": "ork.enable' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at unknown:1:1\n at post (node:inspector:296:36)\n at node:inspector/promises:7:17\n at Promise (unknown:1:11)\n at post (node:inspector/promises:6:24)\n at /test/parallel/test-inspector-network-content-type.js:42:21\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", "retried": true }, "deno": { @@ -87697,7 +87535,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "103 | }\n104 | \n105 | test('should stream Network.dataReceived with data chunks', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-inspector-network-data-received.js:105:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "able' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-network-data-received.js:19:9)\n-------------------------------\n\n\n 0 pass\n 0 fail\n 1 error\nRan 0 tests across 1 file. [33.00ms]", "retried": true }, "deno": { @@ -87726,7 +87564,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "4 | }\n95 | \n96 | test('Network.getRequestPostData should send all buffered text data', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-inspector-network-data-sent.js:96:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "k.enable' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-network-data-sent.js:16:9)\n-------------------------------\n\n\n 0 pass\n 0 fail\n 1 error\nRan 0 tests across 1 file. [32.00ms]", "retried": true }, "deno": { @@ -87755,7 +87593,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/16092e1c-416e-4638-8482-d4223474f558\nInspect in browser:\n https://debug.bun.sh/#localhost:51576/16092e1c-416e-4638-8482-d4223474f558\n--------------------- Bun Inspector ---------------------\nerror: Cannot find module 'internal/deps/undici/undici' from '/test/parallel/test-inspector-network-fetch.js'\n\nBun v1.4.0 (macOS arm64)", + "tail": "nspector ---------------------\nListening:\n ws://localhost:65019/b4c03b79-34e7-4e54-a2d1-dacbd380600d\nInspect in browser:\n https://debug.bun.sh/#localhost:65019/b4c03b79-34e7-4e54-a2d1-dacbd380600d\n--------------------- Bun Inspector ---------------------\nerror: Cannot find module 'internal/deps/undici/undici' from '/test/parallel/test-inspector-network-fetch.js'\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87784,7 +87622,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-network-http.js:401:21)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nd\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-network-http.js:401:21)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -87815,7 +87653,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-network-http2.js:333:21)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)", + "tail": "32601: 'Network.enable' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-inspector-network-http2.js:333:21)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)", "retried": true }, "deno": { @@ -87846,7 +87684,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at test (/test/parallel/test-inspector-network-websocket.js:31:17)\n at (/test/parallel/test-inspector-network-websocket.js:77:1)", + "tail": "-32601: 'Network.enable' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at test (/test/parallel/test-inspector-network-websocket.js:31:17)\n at (/test/parallel/test-inspector-network-websocket.js:77:1)", "retried": true }, "deno": { @@ -88016,7 +87854,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t(ports.every((port) => port > 0));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-port-zero-cluster.js:42:7\n at processTicksAndRejections (native:7:39)", + "tail": "41 | assert.strictEqual(ports.length, 4);\n42 | assert(ports.every((port) => port > 0));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-inspector-port-zero-cluster.js:42:7\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -88076,7 +87914,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "test-inspector-promises.js:61:18)\n\n29 | \n30 | const {\n31 | callFrame: {\n32 | url,\n33 | },\n34 | } = profile.nodes.find(({\n ^\nTypeError: Cannot destructure property 'callFrame' from null or undefined value\n at (/test/parallel/test-inspector-promises.js:34:23)", + "tail": "exactly 1, actual 0.\n at (/test/parallel/test-inspector-promises.js:61:18)\n\n29 | \n30 | const {\n31 | callFrame: {\n32 | url,\n33 | },\n34 | } = profile.nodes.find(({\n ^\nTypeError: Cannot destructure property 'callFrame' from null or undefined value\n at (/test/parallel/test-inspector-promises.js:34:23)", "retried": true }, "deno": { @@ -88134,7 +87972,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "NSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at post (internal:promisify:24:41)\n at test (/test/parallel/test-inspector-resource-name-to-url.js:14:17)\n at (/test/parallel/test-inspector-resource-name-to-url.js:38:37)", + "tail": "pector error -32000: Inspector method \"Debugger.enable\" requires an active inspector (call inspector.open() first)\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at post (internal:promisify:24:41)\n at test (/test/parallel/test-inspector-resource-name-to-url.js:14:17)\n at (/test/parallel/test-inspector-resource-name-to-url.js:38:37)", "retried": true }, "deno": { @@ -88163,7 +88001,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n at post (node:inspector:296:36)\n at post (internal:promisify:24:41)\n at test (/test/parallel/test-inspector-runtime-evaluate-with-timeout.js:15:13)\n at (/test/parallel/test-inspector-runtime-evaluate-with-timeout.js:24:22)", + "tail": " ^\nerror: Inspector error -32601: 'Runtime.evaluate' wasn't found\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at post (internal:promisify:24:41)\n at test (/test/parallel/test-inspector-runtime-evaluate-with-timeout.js:15:13)\n at (/test/parallel/test-inspector-runtime-evaluate-with-timeout.js:24:22)", "retried": true }, "deno": { @@ -88337,7 +88175,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "return new Promise((resolve, reject) => {\n22 | session.post(message, data, (err, result) => {\n23 | if (err)\n24 | reject(new Error(JSON.stringify(err)));\n ^\nerror: {}\n at (/test/parallel/test-inspector-tracing-domain.js:24:20)\n at (node:inspector:300:19)", + "tail": "ain.js:93:20)\n\n19 | \n20 | function post(message, data) {\n21 | return new Promise((resolve, reject) => {\n22 | session.post(message, data, (err, result) => {\n23 | if (err)\n24 | reject(new Error(JSON.stringify(err)));\n ^\nerror: {}\n at (/test/parallel/test-inspector-tracing-domain.js:24:20)\n at (node:inspector:300:19)", "retried": true }, "deno": { @@ -88368,7 +88206,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'Runtime.evaluate' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ion mustSucceed(fn, exact) {\n472 | return mustCall(function(err, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'Runtime.evaluate' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88397,7 +88235,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'Runtime.evaluate' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ion mustSucceed(fn, exact) {\n472 | return mustCall(function(err, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'Runtime.evaluate' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88662,7 +88500,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " can be disabled.\n9 | assert(!AsyncContextFrame.enabled);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-internal-async-context-frame-disable.js:9:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "l/async_context_frame');\n7 | \n8 | // Test that AsyncContextFrame can be disabled.\n9 | assert(!AsyncContextFrame.enabled);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-internal-async-context-frame-disable.js:9:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88722,7 +88560,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n14 | \n15 | errors.E('TEST_ERROR_1', 'Error for testing purposes: %s',\n ^\nTypeError: errors.E is not a function. (In 'errors.E(\"TEST_ERROR_1\", \"Error for testing purposes: %s\", Error)', 'errors.E' is undefined)\n at (/test/parallel/test-internal-error-original-names.js:15:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "'assert');\n12 | const errors = require('internal/errors');\n13 | \n14 | \n15 | errors.E('TEST_ERROR_1', 'Error for testing purposes: %s',\n ^\nTypeError: errors.E is not a function. (In 'errors.E(\"TEST_ERROR_1\", \"Error for testing purposes: %s\", Error)', 'errors.E' is undefined)\n at (/test/parallel/test-internal-error-original-names.js:15:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88751,7 +88589,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | errors.E('TEST_ERROR_1', 'Error for testing purposes: %s',\n ^\nTypeError: errors.E is not a function. (In 'errors.E(\"TEST_ERROR_1\", \"Error for testing purposes: %s\", Error, TypeError, RangeError)', 'errors.E' is undefined)\n at (/test/parallel/test-internal-errors.js:16:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "re('util');\n14 | inspect.defaultOptions.colors = false;\n15 | \n16 | errors.E('TEST_ERROR_1', 'Error for testing purposes: %s',\n ^\nTypeError: errors.E is not a function. (In 'errors.E(\"TEST_ERROR_1\", \"Error for testing purposes: %s\", Error, TypeError, RangeError)', 'errors.E' is undefined)\n at (/test/parallel/test-internal-errors.js:16:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88782,7 +88620,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tPrototypeOf,\n6 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/sync_write_stream.js:6:5)\n at (/test/parallel/test-internal-fs-syncwritestream.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | FunctionPrototypeCall,\n5 | ObjectSetPrototypeOf,\n6 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/sync_write_stream.js:6:5)\n at (/test/parallel/test-internal-fs-syncwritestream.js:7:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88813,7 +88651,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "yPrototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-internal-fs.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "22 | StringPrototypeIncludes,\n23 | Symbol,\n24 | TypedArrayPrototypeAt,\n25 | TypedArrayPrototypeIncludes,\n26 | globalThis,\n27 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/fs/utils.js:27:5)\n at (/test/parallel/test-internal-fs.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88871,7 +88709,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nternalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"module_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-internal-module-wrap.js:7:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"module_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-internal-module-wrap.js:7:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88904,7 +88742,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al/freelist.js:5:5)\n at (/test/parallel/test-internal-modules.js:6:26)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-internal-modules.js:6:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eflectApply,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/freelist.js:5:5)\n at (/test/parallel/test-internal-modules.js:6:26)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-internal-modules.js:6:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -88933,7 +88771,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "RegExpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-internal-net-isLoopback.js:5:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const {\n4 | RegExp,\n5 | RegExpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-internal-net-isLoopback.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89022,7 +88860,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error: Cannot destructure property 'ERR_CHILD_CLOSED_BEFORE_REPLY' from null or undefined value\n at (/lib/internal/socket_list.js:3:9)\n at (/test/parallel/test-internal-socket-list-receive.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const { ERR_CHILD_CLOSED_BEFORE_REPLY } = require('internal/errors').codes;\n ^\nTypeError: Cannot destructure property 'ERR_CHILD_CLOSED_BEFORE_REPLY' from null or undefined value\n at (/lib/internal/socket_list.js:3:9)\n at (/test/parallel/test-internal-socket-list-receive.js:7:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89053,7 +88891,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ypeError: Cannot destructure property 'ERR_CHILD_CLOSED_BEFORE_REPLY' from null or undefined value\n at (/lib/internal/socket_list.js:3:9)\n at (/test/parallel/test-internal-socket-list-send.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const { ERR_CHILD_CLOSED_BEFORE_REPLY } = require('internal/errors').codes;\n ^\nTypeError: Cannot destructure property 'ERR_CHILD_CLOSED_BEFORE_REPLY' from null or undefined value\n at (/lib/internal/socket_list.js:3:9)\n at (/test/parallel/test-internal-socket-list-send.js:7:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89084,7 +88922,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "olSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-assertCrypto.js:5:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-assertCrypto.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89115,7 +88953,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-construct-sab.js:8:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-construct-sab.js:8:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89146,7 +88984,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-decorate-error-stack.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-decorate-error-stack.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89177,7 +89015,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-getCIDR.js:11:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-getCIDR.js:11:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89208,7 +89046,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-helpers.js:7:29)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-helpers.js:7:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89268,7 +89106,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "it,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-normalizeencoding.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-normalizeencoding.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89297,7 +89135,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-objects.js:10:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-objects.js:10:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89328,7 +89166,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-weakreference.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-internal-util-weakreference.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89384,7 +89222,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rtionError: Expected values to be strictly equal:\n\n'0' !== 0\n\n generatedMessage: true,\n actual: \"0\",\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at forEach (native:1:11)\n at /test/parallel/test-internal-validators-validateport.js:37:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "> assert.strictEqual(validatePort(i), 0));\n ^\nAssertionError: Expected values to be strictly equal:\n\n'0' !== 0\n\n generatedMessage: true,\n actual: \"0\",\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at forEach (native:1:11)\n at /test/parallel/test-internal-validators-validateport.js:37:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89417,7 +89255,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-internal-webidl-buffer-source.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| TypedArrayPrototypeGetBuffer,\n30 | TypedArrayPrototypeGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-internal-webidl-buffer-source.js:9:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [24.00ms]", "retried": true }, "deno": { @@ -89450,7 +89288,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "peGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-internal-webidl-converttoint.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "26 | String,\n27 | SymbolIterator,\n28 | TypeError,\n29 | TypedArrayPrototypeGetBuffer,\n30 | TypedArrayPrototypeGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-internal-webidl-converttoint.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89483,7 +89321,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "dArrayPrototypeGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-internal-webidl.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "26 | String,\n27 | SymbolIterator,\n28 | TypeError,\n29 | TypedArrayPrototypeGetBuffer,\n30 | TypedArrayPrototypeGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-internal-webidl.js:7:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89570,7 +89408,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/index.mjs';\n8 | \n9 | describe('worker_threads.isInternalThread', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-is-internal-thread.mjs:9:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "e (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) worker_threads.isInternalThread > should be true inside the loader thread [9.47ms]\n(pass) worker_threads.isInternalThread > should be false inside the main thread [0.07ms]\n(pass) worker_threads.isInternalThread > should be false inside a regular worker thread [1.45ms]\n\n 2 pass\n 1 fail\nRan 3 tests across 1 file. [38.00ms]", "retried": true }, "deno": { @@ -89601,7 +89439,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rnalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"js_stream\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-js-stream-call-properties.js:8:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "}\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"js_stream\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-js-stream-call-properties.js:8:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89659,7 +89497,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: undefined == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-listen-fd-cluster.js:47:10)", + "tail": "pected: !0,\n22 | message,\n23 | operator: \"==\",\n24 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: undefined == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-listen-fd-cluster.js:47:10)", "retried": true }, "deno": { @@ -89773,7 +89611,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: undefined == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-listen-fd-server.js:38:10)", + "tail": "xpected: !0,\n22 | message,\n23 | operator: \"==\",\n24 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: undefined == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-listen-fd-server.js:38:10)", "retried": true }, "deno": { @@ -89858,7 +89696,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-max-old-space-size-percentage.js:43:10\n at forEach (native:1:11)\n at /test/parallel/test-max-old-space-size-percentage.js:39:20\n\nBun v1.4.0 (macOS arm64)", + "tail": "nError: Expected non-zero exit for invalid input \n generatedMessage: false,\n actual: 0,\n expected: 0,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-max-old-space-size-percentage.js:43:10\n at forEach (native:1:11)\n at /test/parallel/test-max-old-space-size-percentage.js:39:20\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89916,7 +89754,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al > 0);\n35 | assert.ok(r.heapUsed > 0);\n36 | assert.ok(r.external > 0);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-memory-usage.js:36:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ss.memoryUsage.rss() > 0);\n32 | }\n33 | \n34 | assert.ok(r.heapTotal > 0);\n35 | assert.ok(r.heapUsed > 0);\n36 | assert.ok(r.external > 0);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-memory-usage.js:36:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -90001,7 +89839,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xListeners],\n addEventListener: [Function: addEventListener],\n removeEventListener: [Function: removeEventListener],\n dispatchEvent: [Function: dispatchEvent],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-messageport-hasref.js:19:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "[Function: setMaxListeners],\n getMaxListeners: [Function: getMaxListeners],\n addEventListener: [Function: addEventListener],\n removeEventListener: [Function: removeEventListener],\n dispatchEvent: [Function: dispatchEvent],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-messageport-hasref.js:19:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -90538,7 +90376,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at (/test/parallel/test-module-loading-globalpaths.js:54:21)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-module-loading-globalpaths.js:52:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "d_process:1076:13)\n at checkExecSyncError (node:child_process:498:27)\n at execFileSync (node:child_process:296:31)\n at (/test/parallel/test-module-loading-globalpaths.js:54:21)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-module-loading-globalpaths.js:52:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -90596,7 +90434,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rror: Command failed: ~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun iDoNotExist\\nerror: Script not found \\\"iDoNotExist\\\"\\n\",\n expected: /MODULE_NOT_FOUND/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-module-main-fail.js:14:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror: Script not found \"iDoNotExist\"\\n'\n\n generatedMessage: true,\n actual: \"Error: Command failed: ~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun iDoNotExist\\nerror: Script not found \\\"iDoNotExist\\\"\\n\",\n expected: /MODULE_NOT_FOUND/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-module-main-fail.js:14:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -90627,7 +90465,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ert(e.toString().match(/Error: Cannot find module/));\n ^\nAssertionError: null == true\n generatedMessage: true,\n actual: null,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-module-main-preserve-symlinks-fail.js:15:7\n\nBun v1.4.0 (macOS arm64)", + "tail": " args.concat(entryPoint));\n14 | } catch (e) {\n15 | assert(e.toString().match(/Error: Cannot find module/));\n ^\nAssertionError: null == true\n generatedMessage: true,\n actual: null,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-module-main-preserve-symlinks-fail.js:15:7\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -90770,7 +90608,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "10 | skipIfPerfettoEnabled();\n11 | tmpdir.refresh();\n12 | \n13 | it('should print the timing information for cjs', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-module-print-timing.mjs:13:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "=\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-module-print-timing.mjs:158:10\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n(fail) should support enable tracing dynamically [35.03ms]\n(pass) should not print when is disabled and found duplicated labels (GH-54265) [10.68ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [113.00ms]", "retried": true }, "deno": { @@ -90911,7 +90749,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at (/test/parallel/test-module-setsourcemapssupport.js:19:14)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-module-setsourcemapssupport.js:18:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "setSourceMapsSupport is not a function. (In 'Module.setSourceMapsSupport(it)', 'Module.setSourceMapsSupport' is undefined)\n at (/test/parallel/test-module-setsourcemapssupport.js:19:14)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-module-setsourcemapssupport.js:18:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -91133,7 +90971,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ngPrototypeToUpperCase,\n 9 | Symbol,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/navigator.js:10:5)\n at (/test/parallel/test-navigator.js:35:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | ObjectFreeze,\n 6 | StringPrototypeIndexOf,\n 7 | StringPrototypeSlice,\n 8 | StringPrototypeToUpperCase,\n 9 | Symbol,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/navigator.js:10:5)\n at (/test/parallel/test-navigator.js:35:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -91635,7 +91473,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " port when port is 0.\n13 | {\n14 | const bound = new net.BoundSocket({ host: '127.0.0.1', port: 0 });\n ^\nTypeError: undefined is not a constructor (evaluating 'new net.BoundSocket({ host: \"127.0.0.1\", port: 0 })')\n at (/test/parallel/test-net-boundsocket.js:14:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "he\n12 | // resolved address, including the OS-assigned ephemeral port when port is 0.\n13 | {\n14 | const bound = new net.BoundSocket({ host: '127.0.0.1', port: 0 });\n ^\nTypeError: undefined is not a constructor (evaluating 'new net.BoundSocket({ host: \"127.0.0.1\", port: 0 })')\n at (/test/parallel/test-net-boundsocket.js:14:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -91991,11 +91829,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "['127.0.0.1'], options.family);\n 8 | };\n 9 | \n10 | describe('when family is ipv4', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-net-connect-custom-lookup-non-string-address.mjs:10:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -92106,7 +91942,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n actual: 456123,\n expected: 456,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-connect-keepalive.js:26:18\n at afterConnect (node:net:1819:32)\n at afterConnectMultiple (node:net:1848:15)\n at open (node:net:625:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": " to be strictly equal:\n\n456123 !== 456\n\n generatedMessage: true,\n actual: 456123,\n expected: 456,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-connect-keepalive.js:26:18\n at afterConnect (node:net:1819:32)\n at afterConnectMultiple (node:net:1848:15)\n at open (node:net:625:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -92249,7 +92085,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ternalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"pipe_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-net-connect-options-fd.js:11:44)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"pipe_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-net-connect-options-fd.js:11:44)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -92278,7 +92114,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "efined,\n expected: {\n code: \"ERR_INVALID_ARG_VALUE\",\n name: \"TypeError\",\n message: /The property 'options\\.host' must be a string without null bytes\\./,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-connect-options-invalid.js:42:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "xception (TypeError).\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_VALUE\",\n name: \"TypeError\",\n message: /The property 'options\\.host' must be a string without null bytes\\./,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-connect-options-invalid.js:42:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -92687,7 +92523,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rror(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-net-end-close.js:9:48)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-net-end-close.js:9:48)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -93380,7 +93216,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | RegExpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-net-normalize-args.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const {\n4 | RegExp,\n5 | RegExpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-net-normalize-args.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -93409,7 +93245,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " expected: 11,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-onread-static-buffer.js:151:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tly equal:\n\n8 !== 11\n\n generatedMessage: true,\n actual: 8,\n expected: 11,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-onread-static-buffer.js:151:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -93548,7 +93384,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-persistent-nodelay.js:33:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-persistent-nodelay.js:33:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -93577,7 +93413,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alls. Expected at least 1, actual 0.\n at (/test/parallel/test-net-persistent-ref-unref.js:18:32)\nMismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-net-persistent-ref-unref.js:24:34)", + "tail": "Mismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-net-persistent-ref-unref.js:18:32)\nMismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-net-persistent-ref-unref.js:24:34)", "retried": true }, "deno": { @@ -93792,11 +93628,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "t';\n4 | import { describe, it } from 'node:test';\n5 | \n6 | describe('net.Server[Symbol.asyncDispose]()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-net-server-async-dispose.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -94015,7 +93849,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":108)\n at /test/parallel/test-net-server-keepalive.js:18:10\n at emit (node:events:100:22)\n at onconnection (node:net:609:16)\n at /test/parallel/test-net-server-keepalive.js:34:16\n at open (node:net:439:26)\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-server-keepalive.js:13:12\n at setKeepAlive (node:net:1430:108)\n at /test/parallel/test-net-server-keepalive.js:18:10\n at emit (node:events:100:22)\n at onconnection (node:net:609:16)\n at /test/parallel/test-net-server-keepalive.js:34:16\n at open (node:net:439:26)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -94046,7 +93880,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rnalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"pipe_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-net-server-listen-handle.js:11:44)\n\nBun v1.4.0 (macOS arm64)", + "tail": "}\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"pipe_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-net-server-listen-handle.js:11:44)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -94349,7 +94183,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "to the worker thread.\n37 | worker.postMessage({ server }, [server]);\n ^\nDataCloneError: Found invalid value in transferList.\n at (/test/parallel/test-net-server-transfer-worker.js:37:10)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "} = server.address();\n35 | \n36 | // Move the listening server to the worker thread.\n37 | worker.postMessage({ server }, [server]);\n ^\nDataCloneError: Found invalid value in transferList.\n at (/test/parallel/test-net-server-transfer-worker.js:37:10)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -95065,7 +94899,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " \"echo:hello\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-socket-transfer-worker.js:57:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "o:hello'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"echo:hello\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-socket-transfer-worker.js:57:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -95260,7 +95094,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n},\n expected: {\n code: \"ERR_WORKER_HANDLE_NOT_TRANSFERABLE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-transfer-guards.js:18:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "RT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n},\n expected: {\n code: \"ERR_WORKER_HANDLE_NOT_TRANSFERABLE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-net-transfer-guards.js:18:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -95839,7 +95673,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "les.node_shared_openssl;\n 9 | \n10 | describe('console output', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-node-output-console.mjs:10:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at /test/parallel/test-node-output-console.mjs:21:22\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) console output > console/stack_overflow.js [67.50ms]\n\n 3 pass\n 2 fail\nRan 5 tests across 1 file. [210.00ms]", "retried": true }, "deno": { @@ -95874,7 +95708,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "com/nodejs/node/pull/33132\n 9 | \n10 | describe('errors output', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-node-output-errors.mjs:10:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at /test/parallel/test-node-output-errors.mjs:45:22\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) errors output > errors/async_error_nexttick_main.js [27.82ms]", "retried": true }, "deno": { @@ -95932,9 +95766,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "it } from 'node:test';\n5 | \n6 | describe('sourcemaps output', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-node-output-sourcemaps.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -95965,7 +95799,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ort { describe, it } from 'node:test';\n5 | \n6 | describe('vm output', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-node-output-vm.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "n/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at /test/parallel/test-node-output-vm.mjs:16:22\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) vm output > vm/vm_dont_display_syntax_error.js [28.99ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [169.00ms]", "retried": true }, "deno": { @@ -96000,7 +95834,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " properties from a package.json above its file location. Found package.json at /package.json.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at requireNoPackageJSONAbove (/test/common/index.js:874:14)\n at /test/parallel/test-node-run.js:4:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "nts/projects/nub/package.json.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at requireNoPackageJSONAbove (/test/common/index.js:874:14)\n at /test/parallel/test-node-run.js:4:8\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [25.00ms]", "retried": true }, "deno": { @@ -96033,7 +95867,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "For,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-nodeeventtarget.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-nodeeventtarget.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96118,7 +95952,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-use-bundled-ca\\n\",\n expected: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun: either --use-openssl-ca or --use-bundled-ca can be used, not both\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-openssl-ca-options.js:17:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " actual: \"error: choose exactly one of --use-system-ca, --use-openssl-ca, or --use-bundled-ca\\n\",\n expected: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun: either --use-openssl-ca or --use-bundled-ca can be used, not both\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-openssl-ca-options.js:17:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96149,7 +95983,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eys,\n 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-options-binding.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | ArrayPrototypeSort,\n 6 | ObjectEntries,\n 7 | ObjectFromEntries,\n 8 | ObjectKeys,\n 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-options-binding.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96180,7 +96014,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "= Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"os\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-os-checked-function.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "76 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"os\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-os-checked-function.js:10:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96211,7 +96045,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t { constants } = require('node:os');\n7 | \n8 | \n9 | test('Verify that signals constant is immutable', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-os-constants-signals.js:9:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "s Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-os-constants-signals.js:10:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) Verify that signals constant is immutable [1.51ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [26.00ms]", "retried": true }, "deno": { @@ -96267,7 +96101,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "umber');\n16 | assert.strictEqual(typeof freemem(), 'number');\n17 | assert.strictEqual(typeof availableParallelism(), 'number');\n18 | }\n19 | \n20 | eval('%PrepareFunctionForOptimization(testFastOs)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-os-fast.js:20:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "15 | assert.strictEqual(typeof totalmem(), 'number');\n16 | assert.strictEqual(typeof freemem(), 'number');\n17 | assert.strictEqual(typeof availableParallelism(), 'number');\n18 | }\n19 | \n20 | eval('%PrepareFunctionForOptimization(testFastOs)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-os-fast.js:20:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96350,7 +96184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at /test/parallel/test-os-userinfo-handles-getter-errors.js:17:3\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "or: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-os-userinfo-handles-getter-errors.js:17:3\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96379,7 +96213,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "235 | if (pwd.shell.length > 0) {\n236 | assert(pwd.shell.includes(path.sep));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-os.js:236:5\n\nBun v1.4.0 (macOS arm64)", + "tail": " It's possible for /etc/passwd to leave the user's shell blank.\n235 | if (pwd.shell.length > 0) {\n236 | assert(pwd.shell.includes(path.sep));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-os.js:236:5\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96462,7 +96296,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".node_without_node_options,\n11 | };\n12 | \n13 | describe('--experimental-package-map CLI behavior', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-package-map-cli.js:13:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "st/parallel/test-package-map-cli.js:62:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) --experimental-package-map CLI behavior > accepts relative path [9.04ms]\n(pass) --experimental-package-map CLI behavior > accepts absolute path [8.92ms]\n\n 1 pass\n 1 skip\n 2 fail\nRan 4 tests across 1 file. [61.00ms]", "retried": true }, "deno": { @@ -96495,7 +96329,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 'node:test';\n5 | import { parseArgs } from 'node:util';\n6 | \n7 | test('when short option used as flag then stored as flag', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-parse-args.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "n long option with value '-' then eaten\n(pass) greedy: when short option with value '--' then eaten\n(pass) greedy: when long option with value '--' then eaten\n(pass) greedy: when short option with value 'abc' then eaten\n(pass) greedy: when long option with value 'abc' then eaten\n(pass) greedy: when short option with value '123' then eaten\n(pass) greedy: when long option with value '123' then eaten", "retried": true }, "deno": { @@ -96530,7 +96364,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nts.\n13 | // Ref: https://github.com/nodejs/node/issues/58179\n14 | describe('env var via comment', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-parse-test-envs.js:14:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "> (/lib/internal/options.js:10:5)\n at (/test/parallel/test-parse-test-envs.js:23:11)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) env var via comment > should interop with flags [0.54ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -96567,7 +96401,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | // Ref: https://github.com/nodejs/node/issues/58179\n13 | describe('env var via comment', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-parse-test-only-envs.js:13:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "or: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-parse-test-only-envs.js:18:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) env var via comment > should set env var B_SET_ENV_VAR [0.18ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [28.00ms]", "retried": true }, "deno": { @@ -96735,7 +96569,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpect=\".\\\\D:\\\\\"\n actual=\"D:\\\\\"\npath.win32.join(\"test\",\"..\",\"D:foo\")\n expect=\".\\\\D:foo\"\n actual=\"D:foo\"\n\n7 !== 0\n\n generatedMessage: false,\n actual: 7,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-join.js:158:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ct=\".\\\\D:\"\n actual=\"D:\"\npath.win32.join(\"test\",\"..\",\"D:\\\\\")\n expect=\".\\\\D:\\\\\"\n actual=\"D:\\\\\"\npath.win32.join(\"test\",\"..\",\"D:foo\")\n expect=\".\\\\D:foo\"\n actual=\"D:foo\"\n\n7 !== 0\n\n generatedMessage: false,\n actual: 7,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-join.js:158:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96764,7 +96598,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "o be strictly equal:\n+ actual - expected\n\n+ '\\\\\\\\?\\\\foo\\\\'\n- '\\\\\\\\?\\\\foo'\n ^\n\n generatedMessage: true,\n actual: \"\\\\\\\\?\\\\foo\\\\\",\n expected: \"\\\\\\\\?\\\\foo\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-makelong.js:82:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ", '\\\\\\\\?\\\\foo');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ '\\\\\\\\?\\\\foo\\\\'\n- '\\\\\\\\?\\\\foo'\n ^\n\n generatedMessage: true,\n actual: \"\\\\\\\\?\\\\foo\\\\\",\n expected: \"\\\\\\\\?\\\\foo\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-makelong.js:82:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96793,7 +96627,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " be strictly equal:\n+ actual - expected\n\n+ '\\\\\\\\.\\\\foo\\\\'\n- '\\\\\\\\.\\\\foo'\n ^\n\n generatedMessage: true,\n actual: \"\\\\\\\\.\\\\foo\\\\\",\n expected: \"\\\\\\\\.\\\\foo\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-normalize.js:43:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " '\\\\\\\\.\\\\foo');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ '\\\\\\\\.\\\\foo\\\\'\n- '\\\\\\\\.\\\\foo'\n ^\n\n generatedMessage: true,\n actual: \"\\\\\\\\.\\\\foo\\\\\",\n expected: \"\\\\\\\\.\\\\foo\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-normalize.js:43:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96905,7 +96739,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "İ\",\"c:\\\\İ\\\\b\\\\İ\\\\test.txt\")\n expect=\"..\\\\..\\\\b\\\\İ\\\\test.txt\"\n actual=\"..\\\\..\\\\..\\\\İ\\\\b\\\\İ\\\\test.txt\"\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-relative.js:74:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n ^\nAssertionError: \npath.win32.relative(\"c:\\\\i̇\\\\a\\\\İ\",\"c:\\\\İ\\\\b\\\\İ\\\\test.txt\")\n expect=\"..\\\\..\\\\b\\\\İ\\\\test.txt\"\n actual=\"..\\\\..\\\\..\\\\İ\\\\b\\\\İ\\\\test.txt\"\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-relative.js:74:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -96934,7 +96768,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "32.resolve(\"\\\\\\\\?\\\\PHYSICALDRIVE0\")\n expect=\"\\\\\\\\?\\\\PHYSICALDRIVE0\"\n actual=\"\\\\\\\\?\\\\PHYSICALDRIVE0\\\\\"\n\n2 !== 0\n\n generatedMessage: false,\n actual: 2,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-resolve.js:72:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "\\\\.\\\\PHYSICALDRIVE0\"\n actual=\"\\\\\\\\.\\\\PHYSICALDRIVE0\\\\\"\npath.win32.resolve(\"\\\\\\\\?\\\\PHYSICALDRIVE0\")\n expect=\"\\\\\\\\?\\\\PHYSICALDRIVE0\"\n actual=\"\\\\\\\\?\\\\PHYSICALDRIVE0\\\\\"\n\n2 !== 0\n\n generatedMessage: false,\n actual: 2,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-path-resolve.js:72:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97071,7 +96905,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-pending-deprecation.js:18:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | ArrayPrototypeSort,\n 6 | ObjectEntries,\n 7 | ObjectFromEntries,\n 8 | ObjectKeys,\n 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-pending-deprecation.js:18:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97189,7 +97023,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-perf-hooks-histogram.js:40:12\n at forEach (native:1:11)\n at /test/parallel/test-perf-hooks-histogram.js:39:36\n\nBun v1.4.0 (macOS arm64)", + "tail": "ionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_OUT_OF_RANGE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-perf-hooks-histogram.js:40:12\n at forEach (native:1:11)\n at /test/parallel/test-perf-hooks-histogram.js:39:36\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97218,7 +97052,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "is not implemented in Bun`);\n ^\nerror: internalBinding(\"performance\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-perf-hooks-monitor-event-loop-delay-fast-calls.js:8:32)\n\nBun v1.4.0 (macOS arm64)", + "tail": " | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"performance\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-perf-hooks-monitor-event-loop-delay-fast-calls.js:8:32)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97249,7 +97083,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " );\n87 | \n88 | assert(resource instanceof PerformanceEntry);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-perf-hooks-resourcetiming.js:88:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "83 | {},\n84 | 200,\n85 | '',\n86 | );\n87 | \n88 | assert(resource instanceof PerformanceEntry);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-perf-hooks-resourcetiming.js:88:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97500,7 +97334,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "artTime, 1);\n74 | }\n75 | \n76 | assert.throws(() => performance.mark('a', { startTime: 'a' }), {\n ^\nTypeError: The provided value is non-finite\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-perf-hooks-usertiming.js:76:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ance.mark('a', { startTime: 1 });\n73 | assert.strictEqual(m.startTime, 1);\n74 | }\n75 | \n76 | assert.throws(() => performance.mark('a', { startTime: 'a' }), {\n ^\nTypeError: The provided value is non-finite\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-perf-hooks-usertiming.js:76:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97531,7 +97365,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n+ 1787421244391.158\n- 1787421244365.425\n ^\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-perf-hooks-worker-timeorigin.js:15:10)\n at emit (node:events:100:22)\n at #onMessage (node:worker_threads:728:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "or: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1788140152740.0908\n- 1788140152707.3647\n ^\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-perf-hooks-worker-timeorigin.js:15:10)\n at emit (node:events:100:22)\n at #onMessage (node:worker_threads:728:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97763,7 +97597,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st/fixtures/test-nodetiming-uvmetricsinfo.js:18:22)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-performance-nodetiming-uvmetricsinfo.js:23:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " (evaluating 'info.loopCount')\n at (/test/fixtures/test-nodetiming-uvmetricsinfo.js:18:22)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-performance-nodetiming-uvmetricsinfo.js:23:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97794,7 +97628,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ror: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1787421245605.825\n- 0\n\n generatedMessage: true,\n actual: 1787421245605.825,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-performance-nodetiming.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "rt.strictEqual(nodeTiming.startTime, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1788140152849.68\n- 0\n\n generatedMessage: true,\n actual: 1788140152849.68,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-performance-nodetiming.js:12:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97825,7 +97659,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at main (/test/parallel/test-performance-resourcetimingbufferfull.js:50:10)\n at /test/parallel/test-performance-resourcetimingbufferfull.js:137:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "AssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at main (/test/parallel/test-performance-resourcetimingbufferfull.js:50:10)\n at /test/parallel/test-performance-resourcetimingbufferfull.js:137:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97856,7 +97690,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al (node:assert:338:7)\n at throws (node:assert:428:33)\n at main (/test/parallel/test-performance-resourcetimingbuffersize.js:41:10)\n at (/test/parallel/test-performance-resourcetimingbuffersize.js:101:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ResourceTimingBufferSize(1n), {\n ^\nTypeError: Conversion from 'BigInt' to 'number' is not allowed.\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at main (/test/parallel/test-performance-resourcetimingbuffersize.js:41:10)\n at (/test/parallel/test-performance-resourcetimingbuffersize.js:101:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97945,7 +97779,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"performance\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-performanceobserver.js:9:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"performance\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-performanceobserver.js:9:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -97974,7 +97808,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.strictEqual(msg, 'using native addons');\n21 | }\n22 | \n23 | {\n24 | assert.ok(process.permission.has('addon'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-allow-addons-cli.js:24:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | const msg = loadFixture('pkgexports/no-addons');\n20 | assert.strictEqual(msg, 'using native addons');\n21 | }\n22 | \n23 | {\n24 | assert.ok(process.permission.has('addon'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-allow-addons-cli.js:24:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98038,7 +97872,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-permission-allow-inspector.js:16:17)\n at (/test/parallel/test-permission-allow-inspector.js:54:4)", + "tail": "or (call inspector.open() first)\n code: \"ERR_INSPECTOR_COMMAND\"\n\n at post (node:inspector:296:36)\n at (node:inspector/promises:7:17)\n at new Promise (1:11)\n at post (node:inspector/promises:6:12)\n at (/test/parallel/test-permission-allow-inspector.js:16:17)\n at (/test/parallel/test-permission-allow-inspector.js:54:4)", "retried": true }, "deno": { @@ -98071,7 +97905,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "I } = require('wasi');\n13 | \n14 | // Guarantee the initial state\n15 | {\n16 | assert.ok(process.permission.has('wasi'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-allow-wasi-cli.js:16:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | const assert = require('assert');\n12 | const { WASI } = require('wasi');\n13 | \n14 | // Guarantee the initial state\n15 | {\n16 | assert.ok(process.permission.has('wasi'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-allow-wasi-cli.js:16:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98104,7 +97938,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| return;\n10 | }\n11 | \n12 | // Guarantee the initial state\n13 | {\n14 | assert.ok(process.permission.has('worker'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-allow-worker-cli.js:14:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "9 | return;\n10 | }\n11 | \n12 | // Guarantee the initial state\n13 | {\n14 | assert.ok(process.permission.has('worker'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-allow-worker-cli.js:14:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98170,7 +98004,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "emRead');\n50 | assert.ok(msgs[0].resource.endsWith('protected-file.md'));\n51 | }\n52 | \n53 | test('permission-audit logs fs denial without throwing', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-permission-audit-fs-does-not-deny.js:53:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "parallel/test-permission-audit-fs-does-not-deny.js:48:10)\n at /test/parallel/test-permission-audit-fs-does-not-deny.js:58:3\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) permission-audit logs fs denial without throwing (eval) [12.49ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [53.00ms]", "retried": true }, "deno": { @@ -98203,7 +98037,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "58 | } finally {\n59 | server.close();\n60 | }\n61 | }\n62 | \n63 | test('permission-audit logs net denial without blocking connect', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-permission-audit-net-does-not-deny.js:63:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "test/parallel/test-permission-audit-net-does-not-deny.js:55:12)\n at /test/parallel/test-permission-audit-net-does-not-deny.js:68:9\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) permission-audit logs net denial without blocking connect (eval) [17.55ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [68.00ms]", "retried": true }, "deno": { @@ -98238,7 +98072,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " return;\n16 | }\n17 | \n18 | // Guarantee the initial state\n19 | {\n20 | assert.ok(!process.permission.has('child'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-child-process-cli.js:20:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "15 | return;\n16 | }\n17 | \n18 | // Guarantee the initial state\n19 | {\n20 | assert.ok(!process.permission.has('child'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-child-process-cli.js:20:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98341,7 +98175,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "';\n4 | import { describe, it } from 'node:test';\n5 | \n6 | describe('Permission model config file support', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-permission-config-file.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "iff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-config-file.mjs:119:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) Permission model config file support > should combine config file permissions with CLI flags [8.35ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [126.00ms]", "retried": true }, "deno": { @@ -98374,7 +98208,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "30 | // Denied permission should publish\n31 | const hasWrite = process.permission.has('fs.write', '/tmp/test');\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-diagnostics-channel.js:31:26)\n\nBun v1.4.0 (macOS arm64)", + "tail": "__filename);\n28 | assert.strictEqual(messages.length, 0);\n29 | \n30 | // Denied permission should publish\n31 | const hasWrite = process.permission.has('fs.write', '/tmp/test');\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-diagnostics-channel.js:31:26)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98436,7 +98270,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ";\n12 | const childProcess = require('child_process');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('child'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-child-process.js:15:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | \n11 | const assert = require('assert');\n12 | const childProcess = require('child_process');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('child'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-child-process.js:15:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98471,7 +98305,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "hild', (msg) => {\n21 | childMessages.push(msg);\n22 | });\n23 | \n24 | process.permission.drop('fs.read', '/tmp/test-drop');\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.drop')\n at (/test/parallel/test-permission-drop-diagnostics-channel.js:24:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t childMessages = [];\n20 | dc.subscribe('node:permission-model:child', (msg) => {\n21 | childMessages.push(msg);\n22 | });\n23 | \n24 | process.permission.drop('fs.read', '/tmp/test-drop');\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.drop')\n at (/test/parallel/test-permission-drop-diagnostics-channel.js:24:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98506,7 +98340,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "op')\n at (/test/parallel/test-permission-drop-errors.js:15:13)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-permission-drop-errors.js:14:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| process.permission.drop(null);\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.drop')\n at (/test/parallel/test-permission-drop-errors.js:15:13)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-permission-drop-errors.js:14:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98572,7 +98406,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "assert = require('assert');\n12 | const fs = require('fs');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('fs.read'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-fs-all.js:15:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | \n11 | const assert = require('assert');\n12 | const fs = require('fs');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('fs.read'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-fs-all.js:15:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98642,7 +98476,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ssert = require('assert');\n12 | const fs = require('fs');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('fs.read'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-fs-read.js:15:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | \n11 | const assert = require('assert');\n12 | const fs = require('fs');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('fs.read'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-fs-read.js:15:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98677,7 +98511,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sert = require('assert');\n12 | const fs = require('fs');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('fs.read'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-fs-scope.js:15:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | \n11 | const assert = require('assert');\n12 | const fs = require('fs');\n13 | \n14 | {\n15 | assert.ok(process.permission.has('fs.read'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-drop-fs-scope.js:15:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98879,7 +98713,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rue');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'true'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"true\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-absolute-path.js:33:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ut.toString().split('\\n');\n33 | assert.strictEqual(fsWrite, 'true');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'true'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"true\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-absolute-path.js:33:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98912,7 +98746,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: undefined,\n expected: [Function: _return],\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-permission-fs-filehandle-utimes.js:26:18", + "tail": "Error: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-permission-fs-filehandle-utimes.js:26:18", "retried": true }, "deno": { @@ -98947,7 +98781,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-permission-fs-internal-module-stat.js:20:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": "7 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"fs\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-permission-fs-internal-module-stat.js:20:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98980,7 +98814,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-read-entrypoint.js:37:10\n at forEach (native:1:11)\n at /test/parallel/test-permission-fs-read-entrypoint.js:27:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "(node:fs:166:13)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-read-entrypoint.js:37:10\n at forEach (native:1:11)\n at /test/parallel/test-permission-fs-read-entrypoint.js:27:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99048,7 +98882,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rue');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'true'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"true\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-relative-path.js:32:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ut.toString().split('\\n');\n32 | assert.strictEqual(fsWrite, 'true');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'true'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"true\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-relative-path.js:32:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99081,7 +98915,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ictEqual(status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-repeat-path.js:39:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "BlockedWrite] = stdout.toString().split('\\n');\n39 | assert.strictEqual(status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-repeat-path.js:39:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99114,7 +98948,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", 1, stderr.toString());\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-require.js:46:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ule,\n43 | ]\n44 | );\n45 | \n46 | assert.strictEqual(status, 1, stderr.toString());\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-require.js:46:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99209,7 +99043,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fixtures/permission/fs-symlink-target-write.js:14:22)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-symlink-target-write.js:58:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "g 'process.permission.has')\n at (/test/fixtures/permission/fs-symlink-target-write.js:14:22)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-symlink-target-write.js:58:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99308,7 +99142,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "us, 0, stderr.toString());\n ^\nAssertionError: error: Module not found \"/tmp/*\"\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-wildcard.js:91:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | `,\n89 | ]\n90 | );\n91 | assert.strictEqual(status, 0, stderr.toString());\n ^\nAssertionError: error: Module not found \"/tmp/*\"\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-wildcard.js:91:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99436,7 +99270,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-write-v8.js:20:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "e('v8');\n17 | const path = require('path');\n18 | \n19 | {\n20 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-fs-write-v8.js:20:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99504,7 +99338,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/common');\n5 | \n6 | const assert = require('assert');\n7 | \n8 | {\n9 | assert.ok(typeof process.permission.has === 'function');\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-has.js:9:28)\n\nBun v1.4.0 (macOS arm64)", + "tail": "4 | const common = require('../common');\n5 | \n6 | const assert = require('assert');\n7 | \n8 | {\n9 | assert.ok(typeof process.permission.has === 'function');\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-has.js:9:28)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99568,7 +99402,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-inspector.js:21:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "n.hasCrypto)\n18 | common.skip('no crypto');\n19 | \n20 | {\n21 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-inspector.js:21:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99601,7 +99435,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | require('../common');\n5 | const assert = require('node:assert');\n6 | \n7 | {\n8 | assert.ok(process.permission.has('net'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-net-allowed.js:8:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "3 | \n4 | require('../common');\n5 | const assert = require('node:assert');\n6 | \n7 | {\n8 | assert.ok(process.permission.has('net'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-net-allowed.js:8:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99634,7 +99468,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "> {\n80 | assert.strictEqual(err.code, 'ERR_ACCESS_DENIED');\n ^\nTypeError: null is not an object (evaluating 'err.code')\n at (/test/parallel/test-permission-net-dns.js:80:24)\n at guarded (internal:shared:116:26)\n at (node:dns:232:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": "9 | dns.lookupService('127.0.0.1', 80, common.mustCall((err) => {\n80 | assert.strictEqual(err.code, 'ERR_ACCESS_DENIED');\n ^\nTypeError: null is not an object (evaluating 'err.code')\n at (/test/parallel/test-permission-net-dns.js:80:24)\n at guarded (internal:shared:116:26)\n at (node:dns:232:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99760,7 +99594,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "node:quic');\n12 | \n13 | // Verify that the permission system correctly reports no net access.\n14 | assert.ok(!process.permission.has('net'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at /test/parallel/test-permission-net-quic.mjs:14:20\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n11 | const { connect, listen, QuicEndpoint } = await import('node:quic');\n12 | \n13 | // Verify that the permission system correctly reports no net access.\n14 | assert.ok(!process.permission.has('net'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at /test/parallel/test-permission-net-quic.mjs:14:20\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99789,7 +99623,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-permission-net-tcp.js:37:10)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rrorCloseNT (internal:streams/destroy:69:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-permission-net-tcp.js:37:10)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99822,7 +99656,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at onListening2 (node:dgram:297:45)\n at emit (node:events:97:22)\n at node:dgram:433:16\n at processTicksAndRejections (native:7:39)", + "tail": "t/parallel/test-permission-net-udp.js:21\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at onListening2 (node:dgram:297:45)\n at emit (node:events:97:22)\n at node:dgram:433:16\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -99855,7 +99689,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "me) => `/tmp/node-test-${process.pid}-${name}.sock`;\n17 | \n18 | assert.strictEqual(process.permission.has('net'), false);\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-net-uds.js:18:28)\n\nBun v1.4.0 (macOS arm64)", + "tail": "14 | const tls = require('tls');\n15 | \n16 | const pipePath = (name) => `/tmp/node-test-${process.pid}-${name}.sock`;\n17 | \n18 | assert.strictEqual(process.permission.has('net'), false);\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-net-uds.js:18:28)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99950,7 +99784,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpected\n\n+ 'using native addons'\n- 'not using native addons'\n\n generatedMessage: true,\n actual: \"using native addons\",\n expected: \"not using native addons\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-no-addons.js:20:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "sertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'using native addons'\n- 'not using native addons'\n\n generatedMessage: true,\n actual: \"using native addons\",\n expected: \"not using native addons\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-no-addons.js:20:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100113,7 +99947,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "10 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-wasi.js:10:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "rt');\n 6 | \n 7 | const { WASI } = require('wasi');\n 8 | \n 9 | {\n10 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: [Function: _return],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-wasi.js:10:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100146,7 +99980,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ire('assert');\n15 | \n16 | // Guarantee the initial state\n17 | {\n18 | assert.ok(!process.permission.has('worker'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-worker-threads-cli.js:18:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "13 | \n14 | const assert = require('assert');\n15 | \n16 | // Guarantee the initial state\n17 | {\n18 | assert.ok(!process.permission.has('worker'));\n ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at (/test/parallel/test-permission-worker-threads-cli.js:18:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100530,7 +100364,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "le\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-preload.js:138:12\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at emit (node:events:97:22)\n at emitCloseNT (internal:streams/destroy:78:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ed: /> 'test'\\r?\\n> $/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-preload.js:138:12\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at emit (node:events:97:22)\n at emitCloseNT (internal:streams/destroy:78:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100590,7 +100424,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "y,\n11 | MathMaxApply,\n12 | MathMinApply,\n13 | SafeArrayPrototypePushApply,\n14 | StringPrototypeConcatApply,\n15 | TypedArrayOfApply,\n ^\nTypeError: Cannot destructure property 'ArrayOfApply' from null or undefined value\n at (/test/parallel/test-primordials-apply.js:15:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | ArrayPrototypeUnshiftApply,\n11 | MathMaxApply,\n12 | MathMinApply,\n13 | SafeArrayPrototypePushApply,\n14 | StringPrototypeConcatApply,\n15 | TypedArrayOfApply,\n ^\nTypeError: Cannot destructure property 'ArrayOfApply' from null or undefined value\n at (/test/parallel/test-primordials-apply.js:15:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100621,7 +100455,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Settled,\n13 | SafePromiseAllSettledReturnVoid,\n14 | SafePromiseAny,\n15 | SafePromisePrototypeFinally,\n16 | SafePromiseRace,\n ^\nTypeError: Cannot destructure property 'PromisePrototypeThen' from null or undefined value\n at (/test/parallel/test-primordials-promise.js:16:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | SafePromiseAllReturnVoid,\n12 | SafePromiseAllSettled,\n13 | SafePromiseAllSettledReturnVoid,\n14 | SafePromiseAny,\n15 | SafePromisePrototypeFinally,\n16 | SafePromiseRace,\n ^\nTypeError: Cannot destructure property 'PromisePrototypeThen' from null or undefined value\n at (/test/parallel/test-primordials-promise.js:16:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100652,7 +100486,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eplace,\n10 | RegExpPrototypeSymbolSearch,\n11 | RegExpPrototypeSymbolSplit,\n12 | SafeStringPrototypeSearch,\n13 | hardenRegExp,\n ^\nTypeError: Cannot destructure property 'RegExpPrototypeExec' from null or undefined value\n at (/test/parallel/test-primordials-regexp.js:13:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | RegExpPrototypeExec,\n 9 | RegExpPrototypeSymbolReplace,\n10 | RegExpPrototypeSymbolSearch,\n11 | RegExpPrototypeSymbolSplit,\n12 | SafeStringPrototypeSearch,\n13 | hardenRegExp,\n ^\nTypeError: Cannot destructure property 'RegExpPrototypeExec' from null or undefined value\n at (/test/parallel/test-primordials-regexp.js:13:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100845,7 +100679,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ert(process.binding('cares_wrap'));\n ^\nerror: process.binding(\"cares_wrap\") is not implemented in Bun. If that breaks something, please file an issue and include a reproducible code sample.\n at (/test/parallel/test-process-binding-internalbinding-allowlist.js:10:16)\n\nBun v1.4.0 (macOS arm64)", + "tail": "cess.binding().\n 9 | assert(process.binding('buffer'));\n10 | assert(process.binding('cares_wrap'));\n ^\nerror: process.binding(\"cares_wrap\") is not implemented in Bun. If that breaks something, please file an issue and include a reproducible code sample.\n at (/test/parallel/test-process-binding-internalbinding-allowlist.js:10:16)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100874,7 +100708,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ew\",\n \"isDate\", \"isExternal\", \"isMap\", \"isMapIterator\", \"isNativeError\", \"isPromise\", \"isRegExp\", \"isSet\",\n \"isSetIterator\", \"isTypedArray\", \"isUint8Array\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-binding-util.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "sArrayBuffer\", \"isArrayBufferView\", \"isAsyncFunction\", \"isDataView\",\n \"isDate\", \"isExternal\", \"isMap\", \"isMapIterator\", \"isNativeError\", \"isPromise\", \"isRegExp\", \"isSet\",\n \"isSetIterator\", \"isTypedArray\", \"isUint8Array\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-binding-util.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -101260,7 +101094,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "max-semi-space-size but are not in process.allowedNodeEnvironmentFlags\n\n151 !== 0\n\n generatedMessage: false,\n actual: 151,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-env-allowed-flags-are-documented.js:119:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "s-native-stack --jitless --max-heap-size --max-old-space-size --max-semi-space-size but are not in process.allowedNodeEnvironmentFlags\n\n151 !== 0\n\n generatedMessage: false,\n actual: 151,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-env-allowed-flags-are-documented.js:119:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -101401,7 +101235,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'Runtime.evaluate' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ion mustSucceed(fn, exact) {\n472 | return mustCall(function(err, ...args) {\n473 | assert.ifError(err);\n ^\nAssertionError: ifError got unwanted exception: Inspector error -32601: 'Runtime.evaluate' wasn't found\n at ifError (node:assert:489:17)\n at (/test/common/index.js:473:12)\n at (node:inspector:300:19)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -101540,7 +101374,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ALID_ARG_TYPE\"\n\n at (/test/parallel/test-process-euid-egid.js:21:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-euid-egid.js:20:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n ^\nTypeError: The \"id\" argument must be of type number or string. Received an instance of Object\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-process-euid-egid.js:21:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-euid-egid.js:20:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -101679,7 +101513,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ding-deprecation\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-exec-argv.js:61:16\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "actual: [ \"--pending-deprecation\", \"--\" ],\n expected: [ \"--pending-deprecation\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-exec-argv.js:61:16\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -101797,7 +101631,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "owed.');\n ^\nAssertionError: process.execve should not have been allowed.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-execve-permission-fail.js:16:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "') {\n16 | assert.fail('process.execve should not have been allowed.');\n ^\nAssertionError: process.execve should not have been allowed.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-execve-permission-fail.js:16:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -101919,7 +101753,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at (/test/parallel/test-process-execve-validation.js:70:15)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-execve-validation.js:69:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t with string keys and values without null bytes. Received { abc: \"123\", cde: \"abc\\u0000cde\" }\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at (/test/parallel/test-process-execve-validation.js:70:15)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-execve-validation.js:69:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102033,7 +101867,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (/test/parallel/test-process-exit-code-validation.js:122:20)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-exit-code-validation.js:121:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ert.throws(() => {\n122 | delete process.exitCode;\n ^\nTypeError: Unable to delete property.\n at (/test/parallel/test-process-exit-code-validation.js:122:20)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-exit-code-validation.js:121:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102280,7 +102114,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-thread.mjs',\n16 | ];\n17 | \n18 | for (const file of files) {\n19 | it(`should exit file ${file} with code=0`, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-process-finalization.mjs:19:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "leanup.mjs with code=0 [37.00ms]\n(pass) should exit file gc-not-close.mjs with code=0 [29.02ms]\n(pass) should exit file unregister.mjs with code=0 [26.08ms]\n(pass) should exit file different-registry-per-thread.mjs with code=0 [36.27ms]\n(pass) register is different per thread [36.53ms]\n(pass) should throw when register undefined value [0.25ms]\n\n 7 pass\n 1 fail\nRan 8 tests across 1 file. [363.00ms]", "retried": true }, "deno": { @@ -102313,7 +102147,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ionWarning: The _stream_wrap module is deprecated.\n(Use `bun --trace-warnings ...` to show where the warning was created)\n(node:60744) [DEP0192] DeprecationWarning: The _tls_common module is deprecated. Use `node:tls` instead.\n(node:60744) [DEP0192] DeprecationWarning: The _tls_wrap module is deprecated. Use `node:tls` instead.\nerror: No such built-in module: node:bun:ffi\n\nBun v1.4.0 (macOS arm64)", + "tail": "ionWarning: The _stream_wrap module is deprecated.\n(Use `bun --trace-warnings ...` to show where the warning was created)\n(node:18127) [DEP0192] DeprecationWarning: The _tls_common module is deprecated. Use `node:tls` instead.\n(node:18127) [DEP0192] DeprecationWarning: The _tls_wrap module is deprecated. Use `node:tls` instead.\nerror: No such built-in module: node:bun:ffi\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102371,7 +102205,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "quests().length, 12);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 12\n\n generatedMessage: true,\n actual: 0,\n expected: 12,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiverequests.js:10:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ".mustCall());\n 9 | \n10 | assert.strictEqual(process._getActiveRequests().length, 12);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 12\n\n generatedMessage: true,\n actual: 0,\n expected: 12,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiverequests.js:10:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102400,7 +102234,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "getactiveresources-track-active-handles.js:28:5)\n at connected (/test/parallel/test-process-getactiveresources-track-active-handles.js:19:5)\n at emit (node:events:118:23)\n at afterConnect (node:net:1820:18)\n at afterConnectMultiple (node:net:1848:15)\n at open (node:net:625:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": ")\n at clientConnected (/test/parallel/test-process-getactiveresources-track-active-handles.js:28:5)\n at connected (/test/parallel/test-process-getactiveresources-track-active-handles.js:19:5)\n at emit (node:events:118:23)\n at afterConnect (node:net:1820:18)\n at afterConnectMultiple (node:net:1848:15)\n at open (node:net:625:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102464,7 +102298,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources-track-interval-lifetime.js:20:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " | assert.strictEqual(process.getActiveResourcesInfo().filter(\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources-track-interval-lifetime.js:20:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102493,7 +102327,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 100\n\n generatedMessage: true,\n actual: 0,\n expected: 100,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources-track-multiple-timers.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert.strictEqual(process.getActiveResourcesInfo().filter(\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 100\n\n generatedMessage: true,\n actual: 0,\n expected: 100,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources-track-multiple-timers.js:12:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102522,7 +102356,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources-track-timer-lifetime.js:19:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " assert.strictEqual(process.getActiveResourcesInfo().filter(\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources-track-timer-lifetime.js:19:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102555,7 +102389,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d values to be strictly deep-equal:\n+ actual - expected\n\n+ []\n- [\n- 'Timeout'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"Timeout\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources.js:9:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ourcesInfo(), ['Timeout']);\n ^\nAssertionError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n+ []\n- [\n- 'Timeout'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"Timeout\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-getactiveresources.js:9:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102613,7 +102447,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d = process.hrtime.bigint();\n15 | assert.strictEqual(typeof end, 'bigint');\n16 | \n17 | assert(end - start >= 0n);\n18 | \n19 | eval('%PrepareFunctionForOptimization(process.hrtime.bigint)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-process-hrtime-bigint.js:19:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "14 | const end = process.hrtime.bigint();\n15 | assert.strictEqual(typeof end, 'bigint');\n16 | \n17 | assert(end - start >= 0n);\n18 | \n19 | eval('%PrepareFunctionForOptimization(process.hrtime.bigint)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-process-hrtime-bigint.js:19:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102642,7 +102476,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n75 | \n76 | const diff = process.hrtime([0, 1e9 - 1]);\n77 | assert(diff[1] >= 0); // https://github.com/nodejs/node/issues/4751\n78 | \n79 | eval('%PrepareFunctionForOptimization(process.hrtime)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-process-hrtime.js:79:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "74 | }\n75 | \n76 | const diff = process.hrtime([0, 1e9 - 1]);\n77 | assert(diff[1] >= 0); // https://github.com/nodejs/node/issues/4751\n78 | \n79 | eval('%PrepareFunctionForOptimization(process.hrtime)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-process-hrtime.js:79:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102727,7 +102561,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt.throws(() => process.kill(0, 987), {\n ^\nSystemError: kill() failed: EINVAL: Invalid argument\n syscall: \"kill\",\n errno: 22,\n code: \"EINVAL\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-kill-pid.js:58:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "t that kill throws an error for invalid signal numbers\n58 | assert.throws(() => process.kill(0, 987), {\n ^\nSystemError: kill() failed: EINVAL: Invalid argument\n syscall: \"kill\",\n errno: 22,\n code: \"EINVAL\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-kill-pid.js:58:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -102758,7 +102592,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "env');\n12 | const missingEnvFile = fixtures.path('dir%20with unusual\"chars \\'åß∂ƒ©∆¬…`/non-existent-file.env');\n13 | \n14 | describe('process.loadEnvFile()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-process-load-env-file.js:14:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " at /test/parallel/test-process-load-env-file.js:85:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) process.loadEnvFile() > should check for permissions [23.28ms]\n(pass) process.loadEnvFile() > loadEnvFile does not mutate --env-file output [35.32ms]\n\n 5 pass\n 1 fail\nRan 6 tests across 1 file. [163.00ms]", "retried": true }, "deno": { @@ -103006,11 +102840,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " this.unrefCalled++;\n31 | }\n32 | }\n33 | \n34 | describe('process.ref/unref work as expected', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-process-ref-unref.js:34:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -103094,7 +102926,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-setgroups.js:38:10)\n at forEach (1:11)\n at (/test/parallel/test-process-setgroups.js:37:43)\n\nBun v1.4.0 (macOS arm64)", + "tail": "undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-process-setgroups.js:40:15)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-setgroups.js:38:10)\n at forEach (1:11)\n at (/test/parallel/test-process-setgroups.js:37:43)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103233,7 +103065,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-process-uid-gid.js:42:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-uid-gid.js:41:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "({});\n ^\nTypeError: The \"id\" argument must be of type number or string. Received an instance of Object\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at (/test/parallel/test-process-uid-gid.js:42:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-process-uid-gid.js:41:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103318,7 +103150,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": " code: 'ERR_ASSERTION',\n+ diff: 'simple',\n+ expected: 'Error: Shall exit',\n+ generatedMessage: true,\n+ operator: 'strictEqual'\n+ }\n- [Error: MyError]\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-process-uncaught-exception-monitor.js:50:12)", + "tail": "undefined\n+ - 'Error: Shall exit'\n+ ] {\n+ actual: undefined,\n+ code: 'ERR_ASSERTION',\n+ diff: 'simple',\n+ expected: 'Error: Shall exit',\n+ generatedMessage: true,\n+ operator: 'strictEqual'\n+ }\n- [Error: MyError]\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-process-uncaught-exception-monitor.js:50:12)", "retried": true }, "deno": { @@ -103378,7 +103210,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "api\", \"nbytes\",\n \"ncrypto\", \"nghttp2\", \"nghttp3\", \"ngtcp2\", \"openssl\", \"simdjson\", \"simdutf\", \"sqlite\", \"tz\", \"unicode\",\n \"uv\", \"uvwasi\", \"v8\", \"zlib\", \"zstd\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-versions.js:73:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ares\", \"brotli\", \"cldr\", \"icu\", \"llhttp\", \"merve\", \"modules\", \"napi\", \"nbytes\",\n \"ncrypto\", \"nghttp2\", \"nghttp3\", \"ngtcp2\", \"openssl\", \"simdjson\", \"simdutf\", \"sqlite\", \"tz\", \"unicode\",\n \"uv\", \"uvwasi\", \"v8\", \"zlib\", \"zstd\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-versions.js:73:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103435,11 +103267,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "e_without_node_options };\n13 | \n14 | describe('process warnings', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-process-warnings.mjs:14:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -103496,7 +103326,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "2)\n at (/test/parallel/test-promise-hook-create-hook.js:8:18)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-create-hook.js:7:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ementedError: node:v8 createHook is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at createHook (node:v8:250:12)\n at (/test/parallel/test-promise-hook-create-hook.js:8:18)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-create-hook.js:7:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103556,7 +103386,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "8:259:12)\n at (/test/parallel/test-promise-hook-on-after.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-after.js:6:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nNotImplementedError: node:v8 onAfter is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at onAfter (node:v8:259:12)\n at (/test/parallel/test-promise-hook-on-after.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-after.js:6:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103585,7 +103415,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "256:12)\n at (/test/parallel/test-promise-hook-on-before.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-before.js:6:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "^\nNotImplementedError: node:v8 onBefore is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at onBefore (node:v8:256:12)\n at (/test/parallel/test-promise-hook-on-before.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-before.js:6:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103614,7 +103444,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":v8:253:12)\n at (/test/parallel/test-promise-hook-on-init.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-init.js:6:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nNotImplementedError: node:v8 onInit is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at onInit (node:v8:253:12)\n at (/test/parallel/test-promise-hook-on-init.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-init.js:6:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103643,7 +103473,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "2:12)\n at (/test/parallel/test-promise-hook-on-resolve.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-resolve.js:6:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tImplementedError: node:v8 onSettled is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at onSettled (node:v8:262:12)\n at (/test/parallel/test-promise-hook-on-resolve.js:7:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-promise-hook-on-resolve.js:6:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -103732,7 +103562,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t = require('assert');\n 6 | \n 7 | // Verify that unhandled rejections always trigger uncaught exceptions instead\n 8 | // of triggering unhandled rejections.\n 9 | \n10 | const err1 = new Error('One');\n ^\nerror: One\n at (/test/parallel/test-promise-unhandled-default.js:10:18)\nerror: null\nnull", + "tail": "allel/test-promise-unhandled-default.js:45:40)\n\n 5 | const assert = require('assert');\n 6 | \n 7 | // Verify that unhandled rejections always trigger uncaught exceptions instead\n 8 | // of triggering unhandled rejections.\n 9 | \n10 | const err1 = new Error('One');\n ^\nerror: One\n at (/test/parallel/test-promise-unhandled-default.js:10:18)\nerror: null\nnull", "retried": true }, "deno": { @@ -103819,7 +103649,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "unhandled-rejections: \"foobar\". Must be one of \"strict\", \"throw\", \"warn\", \"none\", \"warn-with-error-code\"\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-promise-unhandled-flag.js:15:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "err.includes(\n ^\nAssertionError: error: Invalid value for --unhandled-rejections: \"foobar\". Must be one of \"strict\", \"throw\", \"warn\", \"none\", \"warn-with-error-code\"\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-promise-unhandled-flag.js:15:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -104016,7 +103846,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": "nhandled-warn.js:30:12)\n at processTicksAndRejections (native:7:39) {\n generatedMessage: true,\n actual: undefined,\n expected: /lookForMeInStackTrace/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}, 'uncaughtException'\n at fail (node:assert:77:12)\n at mustNotCall (/test/common/index.js:568:12)", + "tail": "fined)\n at (/test/parallel/test-promise-unhandled-warn.js:30:12)\n at processTicksAndRejections (native:7:39) {\n generatedMessage: true,\n actual: undefined,\n expected: /lookForMeInStackTrace/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}, 'uncaughtException'\n at fail (node:assert:77:12)\n at mustNotCall (/test/common/index.js:568:12)", "retried": true }, "deno": { @@ -104105,7 +103935,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "handled_rejections_mode). (rejection id: 1)'\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/common/index.js:695:14)\n at (/test/common/index.js:719:28)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ess on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)'\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/common/index.js:695:14)\n at (/test/common/index.js:719:28)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -104414,7 +104244,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at safeCallbackInvoke (internal:quic/quic:421:20)\n at [kNewSession] (internal:quic/quic:2401:23)\n at onSessionNew (internal:quic/quic:273:91)\n\nBun v1.4.0 (macOS arm64)", + "tail": "0n\n }\n}\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at safeCallbackInvoke (internal:quic/quic:421:20)\n at [kNewSession] (internal:quic/quic:2401:23)\n at onSessionNew (internal:quic/quic:273:91)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -104983,7 +104813,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ficateCompressionAlgorithms();\n ^\nTypeError: tls.getCertificateCompressionAlgorithms is not a function. (In 'tls.getCertificateCompressionAlgorithms()', 'tls.getCertificateCompressionAlgorithms' is undefined)\n at /test/parallel/test-quic-certificate-compression.mjs:21:23\n\nBun v1.4.0 (macOS arm64)", + "tail": "er the feature is available.\n21 | const supported = tls.getCertificateCompressionAlgorithms();\n ^\nTypeError: tls.getCertificateCompressionAlgorithms is not a function. (In 'tls.getCertificateCompressionAlgorithms()', 'tls.getCertificateCompressionAlgorithms' is undefined)\n at /test/parallel/test-quic-certificate-compression.mjs:21:23\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -107261,7 +107091,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- false\n\n generatedMessage: true,\n actual: undefined,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-internal-endpoint-stats-state.mjs:159:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "State.wantsStopSending, false);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- false\n\n generatedMessage: true,\n actual: undefined,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-internal-endpoint-stats-state.mjs:159:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -107290,7 +107120,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "), {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_MISSING_ARGS\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-internal-setcallbacks.mjs:42:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "} = callbacks;\n42 | assert.throws(() => quic.setCallbacks(rest), {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_MISSING_ARGS\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-internal-setcallbacks.mjs:42:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -107402,7 +107232,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-list-endpoints.mjs:20:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "typeof listEndpoints, 'function');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-list-endpoints.mjs:20:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -108301,7 +108131,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "RROR'\n}, Promise {\n QuicError: QUIC transport error 1\n at [kFinishClose] (internal:quic/quic:1742:35)\n at onSessionClose (internal:quic/quic:276:100) {\n code: 'ERR_QUIC_TRANSPORT_ERROR'\n }\n}\n at fail (node:assert:77:12)\n at mustNotCall (/test/common/index.js:568:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ose (internal:quic/quic:276:100) {\n code: 'ERR_QUIC_TRANSPORT_ERROR'\n}, Promise {\n QuicError: QUIC transport error 1\n at [kFinishClose] (internal:quic/quic:1742:35)\n at onSessionClose (internal:quic/quic:276:100) {\n code: 'ERR_QUIC_TRANSPORT_ERROR'\n }\n}\n at fail (node:assert:77:12)\n at mustNotCall (/test/common/index.js:568:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -108357,7 +108187,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at safeCallbackInvoke (internal:quic/quic:421:20)\n at [kNewSession] (internal:quic/quic:2401:23)\n at onSessionNew (internal:quic/quic:273:91)\n\nBun v1.4.0 (macOS arm64)", + "tail": "0n\n }\n}\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at safeCallbackInvoke (internal:quic/quic:421:20)\n at [kNewSession] (internal:quic/quic:2401:23)\n at onSessionNew (internal:quic/quic:273:91)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -108737,7 +108567,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'boolean'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"boolean\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-bidi-writer.mjs:42:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "l(typeof w.canWrite, 'boolean');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'boolean'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"boolean\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-bidi-writer.mjs:42:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -108874,7 +108704,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.ok(\n ^\nAssertionError: Buffer should be pooled for this test to be meaningful\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-body-pooled-buffer.mjs:21:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "y this IS a pooled buffer (byteLength < buffer.byteLength).\n21 | assert.ok(\n ^\nAssertionError: Buffer should be pooled for this test to be meaningful\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-body-pooled-buffer.mjs:21:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -109227,7 +109057,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ial writer.canWrite to be a boolean, got undefined\n at (/test/parallel/test-quic-stream-destroy-emits-stop-sending.mjs:29:36)\n at safeCallbackInvoke (internal:quic/quic:421:20)\n at [kNewStream] (internal:quic/quic:1967:23)\n at onStreamCreated (internal:quic/quic:324:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "(\n ^\nerror: expected initial writer.canWrite to be a boolean, got undefined\n at (/test/parallel/test-quic-stream-destroy-emits-stop-sending.mjs:29:36)\n at safeCallbackInvoke (internal:quic/quic:421:20)\n at [kNewStream] (internal:quic/quic:1967:23)\n at onStreamCreated (internal:quic/quic:324:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -110238,7 +110068,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'boolean'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"boolean\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-writer-api.mjs:96:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "typeof w.canWrite, 'boolean');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'boolean'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"boolean\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-writer-api.mjs:96:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -110267,7 +110097,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cted values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'boolean'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"boolean\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-writer-dispose.mjs:35:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ypeof w.canWrite, 'boolean');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'boolean'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"boolean\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-stream-writer-dispose.mjs:35:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -110701,7 +110531,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 1n);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0n !== 1n\n\n generatedMessage: true,\n actual: 0n,\n expected: 1n,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-version-negotiation-oversized-cid.mjs:84:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "assert.strictEqual(serverEndpoint.stats.versionNegotiationCount, 1n);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0n !== 1n\n\n generatedMessage: true,\n actual: 0n,\n expected: 1n,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-version-negotiation-oversized-cid.mjs:84:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -110838,7 +110668,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rtionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- true\n\n generatedMessage: true,\n actual: undefined,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-writer-backpressure.mjs:46:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "e.\n46 | assert.strictEqual(w.canWrite, true);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- true\n\n generatedMessage: true,\n actual: undefined,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-writer-backpressure.mjs:46:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -110867,7 +110697,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "onError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- false\n\n generatedMessage: true,\n actual: undefined,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-writer-write-rejects.mjs:42:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | assert.strictEqual(w.canWrite, false);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- false\n\n generatedMessage: true,\n actual: undefined,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quic-writer-write-rejects.mjs:42:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -111031,7 +110861,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quotaexceedederror.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ypeof QuotaExceededError, 'function');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-quotaexceedederror.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -111253,7 +111083,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n ^\nerror: readline was closed\n code: \"ERR_USE_AFTER_CLOSE\"\n\n at new ERR_USE_AFTER_CLOSE (internal:repl/node-errors:13:28)\n at resume (internal:readline/interface:254:13)\n at next (node:events:423:25)\n at testReadableFrom (/test/parallel/test-readline-async-iterators.js:57:22)", + "tail": "...args);\n12 | }\n13 | return @makeErrorWithCode(265, ...args);\n ^\nerror: readline was closed\n code: \"ERR_USE_AFTER_CLOSE\"\n\n at new ERR_USE_AFTER_CLOSE (internal:repl/node-errors:13:28)\n at resume (internal:readline/interface:254:13)\n at next (node:events:423:25)\n at testReadableFrom (/test/parallel/test-readline-async-iterators.js:57:22)", "retried": true }, "deno": { @@ -112132,11 +111962,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "4 | });\n25 | }\n26 | \n27 | describe('REPL completion in relation of getters', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-completion-on-getters-disabled.js:27:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -112193,7 +112021,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "31 | \n32 | input.run(['']);\n33 | });\n34 | }\n35 | \n36 | describe('with previews', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-custom-eval-previews.js:36:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-custom-eval-previews.js:67:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) with previews > does show previews if `preview` is set to `true` [2.53ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [35.00ms]", "retried": true }, "deno": { @@ -112219,11 +112047,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": ".run(['']);\n30 | });\n31 | }\n32 | \n33 | describe('repl with custom eval', { concurrency: true }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-custom-eval.js:33:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -112416,11 +112242,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "81 | }));\n82 | });\n83 | }\n84 | \n85 | describe('REPL environment variables', { concurrency: 1 }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-envvars.js:85:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -112502,7 +112326,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected: /> Uncaught TypeError: /,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-harmony.js:46:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Join our Discord community: https://bun.com/discord\\n\",\n expected: /> Uncaught TypeError: /,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-harmony.js:46:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -112651,7 +112475,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": 'A message' }\", \"\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-import-referrer.js:19:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "' }\", \"\" ],\n expected: [\n \"[Module: null prototype] { message: 'A message' }\", \"\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-import-referrer.js:19:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -112682,7 +112506,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 1 more item ]\", \"\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-inspect-defaults.js:15:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "com/discord\", \"\"\n],\n expected: [ \"[ 42, 23 ]\", \"1\", \"[ 42, ... 1 more item ]\", \"\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-inspect-defaults.js:15:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -112713,7 +112537,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at complete (internal:repl/completion:242:29)\n at completer (node:repl:361:136)\n at complete (node:repl:660:19)\n at (/test/parallel/test-repl-inspector.js:15:12) {\n generatedMessage: true,\n actual: [Array],\n expected: [Array],\n operator: 'deepStrictEqual',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": " at completionGroupsLoaded (internal:repl/completion:310:13)\n at complete (internal:repl/completion:242:29)\n at completer (node:repl:361:136)\n at complete (node:repl:660:19)\n at (/test/parallel/test-repl-inspector.js:15:12) {\n generatedMessage: true,\n actual: [Array],\n expected: [Array],\n operator: 'deepStrictEqual',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -112850,7 +112674,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "us> (/test/parallel/test-repl-mode.js:18:3)\n at forEach (native:1:11)\n at (/test/parallel/test-repl-mode.js:17:7) {\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: '==',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "or [ERR_ASSERTION]: false == true\n at testStrictModeTerminal (/test/parallel/test-repl-mode.js:54:10)\n at (/test/parallel/test-repl-mode.js:18:3)\n at forEach (native:1:11)\n at (/test/parallel/test-repl-mode.js:17:7) {\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: '==',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -113211,7 +113035,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": "+\n+ ' at a (REPL1:*:*)\\n'\n- 'Uncaught Error: Whoops!--->\\n' +\n- 'REPL1:*:*--->\\n' +\n- 'd (REPL1:*:*)--->\\n' +\n- 'c (REPL1:*:*)--->\\n' +\n- 'b (REPL1:*:*)--->\\n' +\n- 'a (REPL1:*:*)\\n'\n\n at (/test/parallel/test-repl-pretty-custom-stack.js:41:9)\n at (internal:repl/node-shims:223:25)", + "tail": "' +\n+ ' at c (REPL1:*:*)\\n' +\n+ ' at b (REPL1:*:*)\\n' +\n+ ' at a (REPL1:*:*)\\n'\n- 'Uncaught Error: Whoops!--->\\n' +\n- 'REPL1:*:*--->\\n' +\n- 'd (REPL1:*:*)--->\\n' +\n- 'c (REPL1:*:*)--->\\n' +\n- 'b (REPL1:*:*)--->\\n' +\n- 'a (REPL1:*:*)\\n'\n\n at (/test/parallel/test-repl-pretty-custom-stack.js:41:9)\n at (internal:repl/node-shims:223:25)", "retried": true }, "deno": { @@ -113296,7 +113120,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n- '\"\\\\n\"()\\n\\x1B[90mTypeError: \"\\x1B[39m\\x1B[7G\\x1B[1A'\n ^\n\n at (/test/parallel/test-repl-preview-newlines.js:16:10) {\n generatedMessage: true,\n actual: '\"\\\\n\"()',\n expected: '\"\\\\n\"()\\n\\x1B[90mTypeError: \"\\x1B[39m\\x1B[7G\\x1B[1A',\n operator: 'strictEqual',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "ed values to be strictly equal:\n+ actual - expected\n\n+ '\"\\\\n\"()'\n- '\"\\\\n\"()\\n\\x1B[90mTypeError: \"\\x1B[39m\\x1B[7G\\x1B[1A'\n ^\n\n at (/test/parallel/test-repl-preview-newlines.js:16:10) {\n generatedMessage: true,\n actual: '\"\\\\n\"()',\n expected: '\"\\\\n\"()\\n\\x1B[90mTypeError: \"\\x1B[39m\\x1B[7G\\x1B[1A',\n operator: 'strictEqual',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -113379,7 +113203,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "m\" ],\n expected: [ \"foo\", \"\\u001B[90m[Function: foo]\\u001B[39m\\u001B[11G\\u001B[1A\\u001B[1B\\u001B[2K\\u001B[1A\\r\",\n \"\\u001B[36m[Function: foo]\\u001B[39m\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at tests (/test/parallel/test-repl-preview.js:254:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rue,\n actual: [ \"foo\\r\", \"\\u001B[36m[Function: foo]\\u001B[39m\" ],\n expected: [ \"foo\", \"\\u001B[90m[Function: foo]\\u001B[39m\\u001B[11G\\u001B[1A\\u001B[1B\\u001B[2K\\u001B[1A\\r\",\n \"\\u001B[36m[Function: foo]\\u001B[39m\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at tests (/test/parallel/test-repl-preview.js:254:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -113493,7 +113317,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-require-after-write.js:27:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-require-after-write.js:27:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -113609,7 +113433,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t/parallel/test-repl-require.js:68:12) {\n generatedMessage: true,\n actual: 'Uncaught:\\n' +\n \"ResolveMessage: Cannot find module './bar'\\n\" +\n 'Require stack:\\n' +\n '- /test/fixtures/\\n',\n expected: /Uncaught Error: Cannot find module '\\.\\/bar'/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "orpus>/test/fixtures/\\n'\n\n at (/test/parallel/test-repl-require.js:68:12) {\n generatedMessage: true,\n actual: 'Uncaught:\\n' +\n \"ResolveMessage: Cannot find module './bar'\\n\" +\n 'Require stack:\\n' +\n '- /test/fixtures/\\n',\n expected: /Uncaught Error: Cannot find module '\\.\\/bar'/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -113667,7 +113491,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "25G\", \"\\u001B[3G\", \"\\u001B[0J\",\n \"repl.repl.historyIndex\", \"\\r\\n\", \"-1\\n\",\n ... 5 more items\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-reverse-search.js:345:16\n at emit (node:events:118:23)\n at close (internal:readline/interface:243:32)", + "tail": "01B[2K\", \"\\u001B[1A\", \"\\nfwd-i-search: _\", \"\\u001B[1A\", \"\\u001B[25G\", \"\\u001B[3G\", \"\\u001B[0J\",\n \"repl.repl.historyIndex\", \"\\r\\n\", \"-1\\n\",\n ... 5 more items\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-reverse-search.js:345:16\n at emit (node:events:118:23)\n at close (internal:readline/interface:243:32)", "retried": true }, "deno": { @@ -113914,7 +113738,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-sigint-nested-eval.js:45:10\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ity: https://bun.com/discord\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-sigint-nested-eval.js:45:10\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -114003,7 +113827,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "x1B[3G\\nx\\ny\\nz\\n'\n\n generatedMessage: true,\n actual: \"\\u001B[1G\\n\\u001B[0J\\n> \\n\\u001B[3G\\nx\\ny\\nz\\n\",\n expected: /\\/\\/ ReferenceError: xyz is not defined/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-strict-mode-previews.js:46:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "enceError: xyz is not defined/. Input:\n\n'\\x1B[1G\\n\\x1B[0J\\n> \\n\\x1B[3G\\nx\\ny\\nz\\n'\n\n generatedMessage: true,\n actual: \"\\u001B[1G\\n\\u001B[0J\\n> \\n\\u001B[3G\\nx\\ny\\nz\\n\",\n expected: /\\/\\/ ReferenceError: xyz is not defined/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-strict-mode-previews.js:46:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -114112,11 +113936,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "\n15 | };\n16 | \n17 | describe('REPL tab object completion on computed properties', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-tab-complete-computed-props.js:17:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -114227,7 +114049,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ompletionGroupsLoaded (internal:repl/completion:310:13)\n at completer (node:repl:361:136)\n at complete (node:repl:660:19)\n at (/test/parallel/test-repl-tab-complete-import.js:26:12) {\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: '==',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": ">/test/parallel/test-repl-tab-complete-import.js:27:27)\n at completionGroupsLoaded (internal:repl/completion:310:13)\n at completer (node:repl:361:136)\n at complete (node:repl:660:19)\n at (/test/parallel/test-repl-tab-complete-import.js:26:12) {\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: '==',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -114282,11 +114104,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ompletion result.\n11 | \n12 | describe('REPL tab completion with new expressions', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-tab-complete-new-expression.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -114338,11 +114158,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "\n11 | });\n12 | }\n13 | \n14 | describe('REPL tab completion without side effects', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-tab-complete-nosideeffects.js:14:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -114397,7 +114215,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "mpletionGroupsLoaded (internal:repl/completion:310:13)\n at completer (node:repl:361:136)\n at complete (node:repl:660:19)\n at (/test/parallel/test-repl-tab-complete-require.js:27:14) {\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: '==',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "test/parallel/test-repl-tab-complete-require.js:31:21)\n at completionGroupsLoaded (internal:repl/completion:310:13)\n at completer (node:repl:361:136)\n at complete (node:repl:660:19)\n at (/test/parallel/test-repl-tab-complete-require.js:27:14) {\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: '==',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -114423,11 +114241,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ined\" error.\n12 | \n13 | describe('REPL tab completion with unary expressions', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-tab-complete-unary-expressions.js:13:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -114455,7 +114271,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(data[0], []);\n32 | });\n33 | }\n34 | \n35 | describe('REPL tab completion (core functionality)', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-repl-tab-complete.js:35:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11)\n at /test/parallel/test-repl-tab-complete.js:549:31\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n(fail) REPL tab completion (core functionality) > works with lexically scoped variables [1.80ms]\n\n1 tests failed:\n(fail) REPL tab completion (core functionality) > works with lexically scoped variables [1.80ms]\n\n 28 pass\n 1 fail\nRan 29 tests across 1 file. [67.00ms]", "retried": true }, "deno": { @@ -114540,7 +114356,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error: Illegal return statement\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at ordinaryTests (/test/parallel/test-repl-top-level-await.js:199:14)\n at main (/test/parallel/test-repl-top-level-await.js:226:9)", + "tail": "ge: true,\n actual: \"Uncaught SyntaxError: Return statements are only valid inside functions.\",\n expected: \"Uncaught SyntaxError: Illegal return statement\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at ordinaryTests (/test/parallel/test-repl-top-level-await.js:199:14)\n at main (/test/parallel/test-repl-top-level-await.js:226:9)", "retried": true }, "deno": { @@ -114656,7 +114472,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", \"> \"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-uncaught-exception-standalone.js:16:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ceError: x is not defined\",\n \"> short\", \"undefined\", \"> Foobar\", \"> \"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-uncaught-exception-standalone.js:16:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -114714,7 +114530,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "h the regular expression /Object\\.readdirSync/. Input:\n\n' at readdirSync (unknown) {'\n\n at (/test/parallel/test-repl-underscore.js:187:16) {\n generatedMessage: true,\n actual: ' at readdirSync (unknown) {',\n expected: /Object\\.readdirSync/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "Uncaught AssertionError [ERR_ASSERTION]: The input did not match the regular expression /Object\\.readdirSync/. Input:\n\n' at readdirSync (unknown) {'\n\n at (/test/parallel/test-repl-underscore.js:187:16) {\n generatedMessage: true,\n actual: ' at readdirSync (unknown) {',\n expected: /Object\\.readdirSync/,\n operator: 'match',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -114743,7 +114559,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " undefined\\n/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-unexpected-token-recoverable.js:29:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "d community: https://bun.com/discord\\n\",\n expected: /> \\| undefined\\n/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-unexpected-token-recoverable.js:29:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -114772,9 +114588,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "node:events:121:23)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at pushAndCheck (internal:streams/native-readable:66:19)\n at handleNumberResult (internal:streams/native-readable:76:19)\n at internal:streams/native-readable:43:68\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -114805,7 +114621,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al - expected\n\n+ ''\n- 'Cannot specify --input-type for REPL\\n'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"Cannot specify --input-type for REPL\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-unsupported-option.js:10:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ ''\n- 'Cannot specify --input-type for REPL\\n'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"Cannot specify --input-type for REPL\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-repl-unsupported-option.js:10:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -114863,7 +114679,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nerateCases()) {\n23 | test(`async: ${async}, handleErrorReturn: ${handleErrorReturn}`, async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-repl-user-error-handler.js:23:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "stNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) async: true, handleErrorReturn: unhandled [0.60ms]\n1 | setImmediate(() => { throw new Error(\"testerror\") })\n ^\nerror: testerror\n at (REPL12:1:50)\n(fail) async: true, handleErrorReturn: badvalue [1.83ms]\n\n 4 pass\n 4 fail\nRan 8 tests across 1 file. [82.00ms]", "retried": true }, "deno": { @@ -114896,7 +114712,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " expected: \"Uncaught:\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at runReplTests (/test/parallel/test-repl.js:92:16)\n at /test/parallel/test-repl.js:943:11\n at processTicksAndRejections (native:7:39)", + "tail": "or: Expected '}'\"\n- 'Uncaught:'\n\n generatedMessage: true,\n actual: \"Uncaught SyntaxError: JSON Parse error: Expected '}'\",\n expected: \"Uncaught:\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at runReplTests (/test/parallel/test-repl.js:92:16)\n at /test/parallel/test-repl.js:943:11\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -115257,7 +115073,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Parse error: Expected '}'\n at (/test/parallel/test-require-json.js:28:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-require-json.js:27:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "mmon/fixtures');\n26 | \n27 | assert.throws(function() {\n28 | require(fixtures.path('invalid.json'));\n ^\nSyntaxError: JSON Parse error: Expected '}'\n at (/test/parallel/test-require-json.js:28:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-require-json.js:27:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -115398,7 +115214,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n32 | describe('CJS: --experimental-package-map', { concurrency: !process.env.TEST_PARALLEL }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-require-package-map.js:32:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "CKAGE_MAP_INVALID/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-require-package-map.js:195:14\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) CJS: --experimental-package-map > error handling > throws for duplicate package URLs [11.52ms]", "retried": true }, "deno": { @@ -115512,7 +115328,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "find module 'bar'/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/fixtures/require-resolve.js:17:10\n at anonymous (unknown:1:1)\n at /test/parallel/test-require-resolve.js:38:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "fixtures/require-resolve.js',\n expected: /^Error: Cannot find module 'bar'/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/fixtures/require-resolve.js:17:10\n at anonymous (unknown:1:1)\n at /test/parallel/test-require-resolve.js:38:1\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -115621,11 +115437,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": ") {\n18 | afterEachRuntimeSkip++;\n19 | }\n20 | }, 2));\n21 | \n22 | test('normal test', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-aftereach-runtime-skip.js:22:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -115680,7 +115494,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "re('node:assert');\n4 | const test = require('node:test');\n5 | \n6 | test('expected methods are on t.assert', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-assert.js:6:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "R_ASSERTION\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/parallel/test-runner-assert.js:19:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) t.assert.ok correctly parses the stacktrace [0.51ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -115711,7 +115525,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "v = { ...process.env, 'NODE_DEBUG': 'test_runner' };\n 9 | \n10 | test('default concurrency', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-cli-concurrency.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " 1,/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-cli-concurrency.js:39:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) isolation=none overrides --test-concurrency [4.92ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [59.00ms]", "retried": true }, "deno": { @@ -115742,7 +115556,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tch[1].split(',');\n24 | }\n25 | \n26 | describe('test runner randomize flags via command line', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-cli-randomize.js:26:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-cli-randomize.js:147:14\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) test runner randomize flags via command line > should randomize internal test order differently across seeds [20.22ms]", "retried": true }, "deno": { @@ -115775,7 +115589,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tures.path('test-runner', 'default-behavior');\n 8 | const env = { ...process.env, 'NODE_DEBUG': 'test_runner' };\n 9 | \n10 | test('default timeout -- Infinity', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-cli-timeout.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ut: 10,/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-cli-timeout.js:27:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) isolation=none uses the --test-timeout flag [4.91ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [44.00ms]", "retried": true }, "deno": { @@ -115837,9 +115651,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "ixturePaths[file], content));\n35 | \n36 | describe('test runner watch mode with more complex setup', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-complex-dependencies.mjs:36:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -115868,9 +115682,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "ir.refresh();\n12 | \n13 | describe('Concurrency option (boolean) = true', { concurrency: true }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-concurrency.js:13:1)\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -115903,7 +115717,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e });\n17 | }\n18 | \n19 | describe('test runner coverage default exclusion', skipIfNoInspector, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-coverage-default-exclusion.mjs:19:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "f: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-coverage-default-exclusion.mjs:114:5\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) test runner coverage default exclusion > should exclude ts test files [5.30ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [52.00ms]", "retried": true }, "deno": { @@ -115934,7 +115748,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rue });\n19 | }\n20 | \n21 | describe('run() coverage with isolation: none', skipIfNoInspector, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-coverage-isolation-none-api.mjs:21:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "SERTION\"\n\n at /test/parallel/test-runner-coverage-isolation-none-api.mjs:65:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) run() coverage with isolation: none > is idempotent when --experimental-test-coverage is also passed [21.97ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [58.00ms]", "retried": true }, "deno": { @@ -115969,7 +115783,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "perimental-strip-types',\n29 | ];\n30 | \n31 | describe('Coverage with source maps', async () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-coverage-source-map.js:31:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-coverage-source-map.js:145:16\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) Coverage with source maps > should throw when a source map does not exist [7.08ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [91.00ms]", "retried": true }, "deno": { @@ -116004,7 +115818,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "58 | \n59 | for (const coverage of coverages) {\n60 | test(`test passing ${coverage.flag}`, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-coverage-thresholds.js:60:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nSyntaxError: JSON Parse error: Unexpected EOF\n at (/test/parallel/test-runner-coverage-thresholds.js:87:25)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) test passing --test-coverage-functions with custom reporter [7.56ms]", "retried": true }, "deno": { @@ -116037,7 +115851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n92 | formatSpawnSyncResult(result),\n93 | );\n94 | }\n95 | \n96 | test('test coverage report', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-coverage.js:96:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertIncludesReport (/test/parallel/test-runner-coverage.js:90:3)\n at /test/parallel/test-runner-coverage.js:492:3\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) coverage with included files [7.70ms]", "retried": true }, "deno": { @@ -116067,11 +115881,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "21 | \n22 | testAssertions.register('context', function() {\n23 | return this;\n24 | });\n25 | \n26 | test('throws if name is not a string', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-custom-assertions.js:26:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -116101,7 +115913,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "error', name: data.name, type: data.type }));\n15 | \n16 | describe('suite end ordering', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-diagnostics-channel.js:16:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ge: false,\n actual: undefined,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-diagnostics-channel.js:172:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) error events fire for failing tests in fixture [20.69ms]", "retried": true }, "deno": { @@ -116134,7 +115946,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "./common/fixtures');\n7 | \n8 | test('ensures --enable-source-maps does not throw an error', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-enable-source-maps-issue.js:8:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ctEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-enable-source-maps-issue.js:14:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) ensures --enable-source-maps does not throw an error [22.64ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -116163,7 +115975,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "plementedError: run({ isolation: 'none' }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:219:24)\n at (/test/parallel/test-runner-enqueue-file-syntax-error.js:8:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ntedError: run({ isolation: 'none' }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:219:24)\n at (/test/parallel/test-runner-enqueue-file-syntax-error.js:8:17)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [28.00ms]", "retried": true }, "deno": { @@ -116192,7 +116004,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "return events;\n18 | }\n19 | \n20 | describe('entryFile attribution in reporter events', { concurrency: false }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-entry-file.mjs:20:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "l/test-runner-entry-file.mjs:52:26)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n at (node:test:1597:13)\n(fail) entryFile attribution in reporter events > does not stamp entryFile with isolation none [0.23ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [130.00ms]", "retried": true }, "deno": { @@ -116225,7 +116037,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode:test');\n 8 | const cwd = fixtures.path('test-runner', 'error-reporter-fail-fast');\n 9 | \n10 | test('all tests failures reported without FAIL_FAST flag', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-error-reporter.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-error-reporter.js:31:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) FAIL_FAST stops test execution after first failure [7.63ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [47.00ms]", "retried": true }, "deno": { @@ -116260,7 +116072,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "),\n11 | ];\n12 | \n13 | test('execution-ordered events bypass FileTest declaration-order buffer', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-execution-ordered-bypass.mjs:13:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "233:24)\n at (/test/parallel/test-runner-execution-ordered-bypass.mjs:18:18)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) execution-ordered events bypass FileTest declaration-order buffer [1.94ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [32.00ms]", "retried": true }, "deno": { @@ -116293,7 +116105,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process.execPath, [__filename, 'child', 'pass']);\n46 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-exit-code.js:46:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "tEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-exit-code.js:46:10\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [65.00ms]", "retried": true }, "deno": { @@ -116378,7 +116190,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected: /Error: Test \"extraneous async activity test\" at .+extraneous_set_immediate_async\\.mjs:3:1 generated asynchronous activity after the test ended/m,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-extraneous-async-activity.js:13:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ded/m. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /Error: Test \"extraneous async activity test\" at .+extraneous_set_immediate_async\\.mjs:3:1 generated asynchronous activity after the test ended/m,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-extraneous-async-activity.js:13:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -116433,11 +116245,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "NotCall());\n 8 | \n 9 | for (let i = 0; i < defaultMaxListeners + 1; ++i) {\n10 | test(`test ${i + 1}`);\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-filter-warning.js:10:3)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -116467,7 +116277,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "= path.join(fixtureDir, 'runner.mjs');\n14 | \n15 | describe('test runner flag propagation', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-flag-propagation.js:15:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-flag-propagation.js:66:16\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) test runner flag propagation > via command line > should propagate --experimental-test-coverage to child tests as expected [11.14ms]", "retried": true }, "deno": { @@ -116529,7 +116339,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "22 | return destination;\n23 | }\n24 | \n25 | tmpdir.refresh();\n26 | \n27 | test('junit reporter', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-force-exit-flush.js:27:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "de: \"ERR_ASSERTION\"\n\n at runWithReporter (/test/parallel/test-runner-force-exit-flush.js:20:10)\n at /test/parallel/test-runner-force-exit-flush.js:44:31\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) tap reporter [25.55ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [115.00ms]", "retried": true }, "deno": { @@ -116557,11 +116367,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ntext(), undefined);\n17 | \n18 | test('getTestContext returns current context inside test', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-get-test-context.js:18:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -116591,7 +116399,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-global-setup-teardown.mjs:93:3)\n at forEach (1:11)\n at /test/parallel/test-runner-global-setup-teardown.mjs:91:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "mple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-global-setup-teardown.mjs:381:17\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) test runner global hooks with isolation=none and --test: true > should run globalSetup and globalTeardown only once for run with multiple test files [25.65ms]", "retried": true }, "deno": { @@ -116620,9 +116428,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "s[file], content));\n50 | }\n51 | \n52 | describe('test runner watch mode with global setup hooks', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-global-setup-watch-mode.mjs:52:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -116653,7 +116461,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d: \"{ marker: 1 }\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-runner-import-no-scheme.js:48:12)\n at /test/parallel/test-runner-import-no-scheme.js:52:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ual - expected\n\n+ '{\\n marker: 1,\\n}'\n- '{ marker: 1 }'\n\n generatedMessage: true,\n actual: \"{\\n marker: 1,\\n}\",\n expected: \"{ marker: 1 }\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/parallel/test-runner-import-no-scheme.js:48:12)\n at /test/parallel/test-runner-import-no-scheme.js:52:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -116715,7 +116523,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cess';\n 6 | import { test, run } from 'node:test';\n 7 | \n 8 | const fixture = fixtures.path('test-runner', 'log-events', 'basic.mjs');\n 9 | \n10 | test('t.log() validates its arguments', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-log.mjs:10:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "D\"\n\n at run (node:test:219:24)\n at (/test/parallel/test-runner-log.mjs:28:18)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) test:log is emitted immediately with the expected payload [0.84ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [68.00ms]", "retried": true }, "deno": { @@ -116748,7 +116556,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "out = child.stdout.toString();\n36 | assert.match(stdout, /pass 2$/m);\n ^\nAssertionError: The input did not match the regular expression /pass 2$/m. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /pass 2$/m,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-misc.js:36:10\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n ^\nAssertionError: The input did not match the regular expression /pass 2$/m. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /pass 2$/m,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-misc.js:36:10\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [81.00ms]", "retried": true }, "deno": { @@ -116776,11 +116584,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "st { it, describe } = require('node:test');\n7 | \n8 | describe('Mock Timers Date Test Suite', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-mock-timers-date.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -116807,11 +116613,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " require('node:timers/promises');\n8 | \n9 | describe('Mock Timers Scheduler Test Suite', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-mock-timers-scheduler.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -116841,7 +116645,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "require('node:test');\n7 | \n8 | test('mock timers do not break test timeout cleanup', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-mock-timers-with-timeout.js:8:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": ": \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-mock-timers-with-timeout.js:13:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) mock timers do not break test timeout cleanup [30.18ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [65.00ms]", "retried": true }, "deno": { @@ -116867,11 +116671,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "nst { TIMEOUT_MAX } = require('internal/timers');\n12 | \n13 | describe('Mock Timers Test Suite', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-mock-timers.js:13:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -116903,7 +116705,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "= require('node:assert');\n4 | const { mock, test } = require('node:test');\n5 | test('spies on a function', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-mocking.js:5:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "s]\n(pass) throws if setting a non-writable property [0.05ms]\n(pass) throws if property does not exist [0.02ms]\n(pass) throws if object is null [0.02ms]\n(pass) local property mocks are auto restored after the test finishes [0.23ms]\n\n2 tests failed:\n(fail) mocks a constructor [1.85ms]\n(fail) method() fails if method cannot be redefined [0.27ms]\n\n 52 pass\n 2 fail\nRan 54 tests across 1 file. [46.00ms]", "retried": true }, "deno": { @@ -116934,7 +116736,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "');\n14 | const { pathToFileURL } = require('node:url');\n15 | \n16 | test('input validation', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-module-mocking.js:16:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "MPLEMENTED\"\n\n at module (node:test:847:24)\n at (/test/parallel/test-runner-module-mocking.js:437:12)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1513:71)\n at (node:test:1597:13)\n(fail) modules cannot be mocked multiple times at once [0.51ms]", "retried": true }, "deno": { @@ -116965,7 +116767,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nNotImplementedError: run({ isolation: 'none' }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:219:24)\n at /test/parallel/test-runner-no-isolation-different-cwd.mjs:6:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "} from 'node:test';\n5 | \n6 | const stream = run({\n ^\nNotImplementedError: run({ isolation: 'none' }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:219:24)\n at /test/parallel/test-runner-no-isolation-different-cwd.mjs:6:16\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -116996,7 +116798,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "test-runner', 'filtered-suite-async-build.mjs');\n12 | \n13 | test('works with --test-only', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-no-isolation-filtering.js:13:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-no-isolation-filtering.js:109:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) works with --test-skip-pattern [31.69ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [198.00ms]", "retried": true }, "deno": { @@ -117029,7 +116831,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "'after two: ',\n46 | ].join('\\n');\n47 | \n48 | test('use --import (CJS) to define global hooks', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-no-isolation-hooks.mjs:48:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "oot>\\nafter two: \",\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-no-isolation-hooks.mjs:81:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) use --require to define global hooks [33.89ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [156.00ms]", "retried": true }, "deno": { @@ -117091,7 +116893,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "1 | 'use strict';\n2 | require('../common');\n3 | const { test, suite } = require('node:test');\n4 | \n5 | suite('test runner option precedence', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-option-precedence.js:5:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " return result;\n894 | }\n895 | let error = Error(message);\n ^\nerror: plan expected 1 assertions but received 0\n code: \"ERR_TEST_FAILURE\"\n\n at makeTestFailure (node:test:895:20)\n at check (node:test:930:28)\n at executeTestNode (node:test:1456:35)\n(fail) test runner option precedence > [0.04ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [50.00ms]", "retried": true }, "deno": { @@ -117119,11 +116921,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "st\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-option-validation.js:14:3)\n at forEach (1:11)\n at (/test/parallel/test-runner-option-validation.js:12:40)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -117151,7 +116951,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "describe, it, run } from 'node:test';\n4 | import { join } from 'node:path';\n5 | \n6 | const testFixtures = fixtures.path('test-runner', 'plan');\n7 | \n8 | describe('input validation', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-plan.mjs:8:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "out > should handle basic timeout scenarios [535.80ms]\n(pass) test planning > with timeout > should fail when timeout expires before plan is met [535.87ms]\n(pass) test planning > with timeout > should handle wait:true option specifically [534.31ms]\n(pass) test planning > with timeout > should handle wait:false option (should not wait) [31.41ms]\n\n 14 pass\n 0 fail\nRan 14 tests across 1 file. [1.94s]", "retried": true }, "deno": { @@ -117182,7 +116982,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": ['c', 'a', 'b'] },\n11 | ];\n12 | \n13 | test('randomizes the first subtest draw deterministically', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-randomize-first-draw.mjs:13:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-randomize-first-draw.mjs:35:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) randomizes the first subtest draw deterministically [70.12ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [109.00ms]", "retried": true }, "deno": { @@ -117219,7 +117019,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fresh();\n13 | \n14 | let tmpFiles = 0;\n15 | describe('node:test reporters', { concurrency: true }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-reporters.js:15:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ipt not found \\\"dot\\\"\\n\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-reporters.js:70:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) node:test reporters > should support a file as a destination [9.87ms]", "retried": true }, "deno": { @@ -117249,11 +117049,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "} = require('node:http');\n5 | \n6 | let server;\n7 | \n8 | before(common.mustCall(() => {\n ^\nerror: Cannot use beforeAll() outside of the test runner. Run \"bun test\" to run tests.\n at before (node:test:1739:12)\n at (/test/parallel/test-runner-root-after-with-refed-handles.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -117281,7 +117079,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st { test } = require('node:test');\n6 | \n7 | test('root duration is longer than test duration', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-root-duration.js:7:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-root-duration.js:17:10\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) root duration is longer than test duration [34.83ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [73.00ms]", "retried": true }, "deno": { @@ -117312,7 +117110,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "l.abort();\n 9 | \n10 | describe('require(\\'node:test\\').run coverage settings', { concurrency: true }, async () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-run-coverage.mjs:10:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --coverage` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:215:24)\n at (/test/parallel/test-runner-run-coverage.mjs:102:22)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)", "retried": true }, "deno": { @@ -117374,7 +117172,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ");\n15 | \n16 | describe('require(\\'node:test\\').run with global hooks', { concurrency: false }, mustCall(() => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-run-global-hooks.mjs:16:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " at /test/parallel/test-runner-run-global-hooks.mjs:62:12\n at /test/parallel/test-runner-run-global-hooks.mjs:195:35\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) require('node:test').run with global hooks > with isolation : none > should run ESM globalSetup and globalTeardown functions [14.25ms]", "retried": true }, "deno": { @@ -117405,7 +117203,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "5 | import { dot, spec, tap } from 'node:test/reporters';\n ^\nerror: Could not resolve: \"node:test/reporters\". Maybe you need to \"bun install\"?\n at /test/parallel/test-runner-run.mjs:5:32\n\nBun v1.4.0 (macOS arm64)", + "tail": "run.mjs:\n\n# Unhandled error between tests\n-------------------------------\n5 | import { dot, spec, tap } from 'node:test/reporters';\n ^\nerror: Could not resolve: \"node:test/reporters\". Maybe you need to \"bun install\"?\n at /test/parallel/test-runner-run.mjs:5:32\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [11.00ms]", "retried": true }, "deno": { @@ -117438,7 +117236,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "gPrototypeSplit,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/utils.js:30:5)\n at (/test/parallel/test-runner-seeded-generator.js:5:32)\n\nBun v1.4.0 (macOS arm64)", + "tail": " StringPrototypePadEnd,\n26 | StringPrototypePadStart,\n27 | StringPrototypeRepeat,\n28 | StringPrototypeSlice,\n29 | StringPrototypeSplit,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/utils.js:30:5)\n at (/test/parallel/test-runner-seeded-generator.js:5:32)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -117471,7 +117269,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e:test');\n6 | \n7 | tmpdir.refresh();\n8 | \n9 | suite('t.assert.fileSnapshot() validation', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-snapshot-file-tests.js:9:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-runner-snapshot-file-tests.js:29:14)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) t.assert.fileSnapshot() validation > options.serializers must only contain functions [0.20ms]", "retried": true }, "deno": { @@ -117502,7 +117300,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "PrototypeSlice,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/snapshot.js:13:5)\n at (/test/parallel/test-runner-snapshot-tests.js:15:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| String,\n11 | StringPrototypeReplaceAll,\n12 | StringPrototypeSlice,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/snapshot.js:13:5)\n at (/test/parallel/test-runner-snapshot-tests.js:15:3)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [40.00ms]", "retried": true }, "deno": { @@ -117530,11 +117328,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "6 | \n7 | // Verify that test runner can handle invalid source maps.\n8 | \n9 | test('ok', () => {});\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-source-maps-invalid-json.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -117562,7 +117358,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ngPrototypeSplit,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/utils.js:30:5)\n at (/test/parallel/test-runner-string-to-regexp.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": " StringPrototypePadEnd,\n26 | StringPrototypePadStart,\n27 | StringPrototypeRepeat,\n28 | StringPrototypeSlice,\n29 | StringPrototypeSplit,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/utils.js:30:5)\n at (/test/parallel/test-runner-string-to-regexp.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -117590,11 +117386,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "://github.com/nodejs/node/issues/51997\n6 | test('after hook should be called with no subtests', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-subtest-after-hook.js:6:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -117622,7 +117416,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "${n}$`, 'm'));\n27 | assert.match(stdout, /^# fail 0$/m);\n28 | }\n29 | \n30 | test('no filter: every test runs', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-tag-filter-cli.mjs:30:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "h\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-tag-filter-cli.mjs:107:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) empty --experimental-test-tag-filter= is rejected by argv parser [31.54ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [346.00ms]", "retried": true }, "deno": { @@ -117655,7 +117449,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| }\n28 | return byName;\n29 | }\n30 | \n31 | describe('tag-bearing event payloads', { concurrency: false }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-tags-events.mjs:31:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "est-runner-tags-events.mjs:89:20)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n at (node:test:1597:13)\n(fail) tag-bearing event payloads > test:pass fires only for selected tagged tests when filtered [0.56ms]\n\n 2 pass\n 3 fail\nRan 5 tests across 1 file. [176.00ms]", "retried": true }, "deno": { @@ -117685,11 +117479,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ght change at any time');\n40 | \n41 | test('the warning fires once per process for tag registration', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-tags-experimental-warning.mjs:41:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -117718,11 +117510,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "de:test';\n4 | \n5 | expectWarning('ExperimentalWarning', 'Test tags is an experimental feature and might change at any time');\n6 | \n7 | test('child inherits parent suite tags', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-tags-inheritance.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -117751,11 +117541,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "experimental feature and might change at any time');\n8 | \n9 | test('non-array tags throws ERR_INVALID_ARG_TYPE', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-runner-tags-validation.mjs:9:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -117782,11 +117570,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "require('node:test');\n 7 | \n 8 | tmpdir.refresh();\n 9 | \n10 | suite('suite', common.mustCall((t) => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-test-filepath.js:10:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -117813,11 +117599,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " = require('../common');\n3 | const assert = require('node:assert');\n4 | const { before, suite, test } = require('node:test');\n5 | \n6 | before(common.mustCall((t) => {\n ^\nerror: Cannot use beforeAll() outside of the test runner. Run \"bun test\" to run tests.\n at before (node:test:1739:12)\n at (/test/parallel/test-runner-test-fullname.js:6:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -117849,7 +117633,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "collectEvents (/test/parallel/test-runner-test-id.js:9:18)\n at main (/test/parallel/test-runner-test-id.js:20:24)\n at (/test/parallel/test-runner-test-id.js:73:1)", + "tail": "ne' }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:219:24)\n at collectEvents (/test/parallel/test-runner-test-id.js:9:18)\n at main (/test/parallel/test-runner-test-id.js:20:24)\n at (/test/parallel/test-runner-test-id.js:73:1)", "retried": true }, "deno": { @@ -117882,7 +117666,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "96 | }\n 97 | });\n 98 | return res;\n 99 | };\n100 | \n101 | test('test should pass on third rerun', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-test-rerun-failures.js:101:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "no: -2,\n code: \"ENOENT\"\n\n at async (/test/parallel/test-runner-test-rerun-failures.js:91:33)\n at async (/test/parallel/test-runner-test-rerun-failures.js:264:32)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) using `run` api [47.69ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [146.00ms]", "retried": true }, "deno": { @@ -117942,7 +117726,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/fixtures/test-runner/todo-suite-failing-hook.mjs:3:1\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-todo-suite-hook-failure.js:21:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "n tests.\n at addSuite (node:test:1695:13)\n at /test/fixtures/test-runner/todo-suite-failing-hook.mjs:3:1\n\nBun v1.4.0 (macOS arm64)\n\n\n1 !== 0\n\n generatedMessage: false,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-todo-suite-hook-failure.js:21:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -117972,11 +117756,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " } = require('util/types');\n10 | \n11 | const testOnly = test('only test', { only: true });\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-typechecking.js:11:18)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -118004,7 +117786,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | TypedArrayPrototypeGetLength,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/reporter/v8-serializer.js:5:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": "zer.mjs:\n\n# Unhandled error between tests\n-------------------------------\n1 | 'use strict';\n2 | \n3 | const {\n4 | TypedArrayPrototypeGetLength,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/reporter/v8-serializer.js:5:5)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [30.00ms]", "retried": true }, "deno": { @@ -118034,11 +117816,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "e('../common');\n3 | const { suite, test } = require('node:test');\n4 | \n5 | suite('input validation', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-runner-wait-for.js:5:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -118066,9 +117846,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": " | \n53 | await setupFixtures();\n54 | \n55 | describe('test runner watch mode with more complex setup', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-runner-watch-mode-complex.mjs:55:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -118099,7 +117879,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "est } = require('node:test');\n7 | \n8 | test('NODE_TEST_WORKER_ID is set for concurrent test files', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-runner-worker-id.js:8:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tor: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-worker-id.js:119:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) worker IDs are reused when more tests than concurrency [34.61ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [278.00ms]", "retried": true }, "deno": { @@ -118130,7 +117910,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-xfail.js:213:12\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at emit (node:events:97:22)\n at emitCloseNT (internal:streams/destroy:78:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-xfail.js:213:12\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at emit (node:events:97:22)\n at emitCloseNT (internal:streams/destroy:78:14)\n at processTicksAndRejections (native:7:39)\n-------------------------------\n\n\n 0 pass\n 0 fail\n 1 error\nRan 0 tests across 1 file. [62.00ms]", "retried": true }, "deno": { @@ -118250,7 +118030,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "trictEqual(status, 12);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 12\n\n generatedMessage: true,\n actual: 0,\n expected: 12,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-security-revert-unknown.js:10:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "t-a-cve']);\n 9 | assert.strictEqual(signal, null);\n10 | assert.strictEqual(status, 12);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 12\n\n generatedMessage: true,\n actual: 0,\n expected: 12,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-security-revert-unknown.js:10:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118281,7 +118061,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st testName = path.join(__dirname, 'test-http-max-http-headers.js');\n 9 | \n10 | test(function(_, cb) {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-set-http-max-http-headers.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Equal\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-set-http-max-http-headers.js:44:12\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n(fail) [58.13ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [165.00ms]", "retried": true }, "deno": { @@ -118339,7 +118119,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "number\n at (/test/parallel/test-set-process-debug-port.js:46:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-set-process-debug-port.js:45:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "do not coerce.\n45 | assert.throws(() => {\n46 | process.debugPort = Symbol();\n ^\nTypeError: Cannot convert a symbol to a number\n at (/test/parallel/test-set-process-debug-port.js:46:3)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-set-process-debug-port.js:45:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118368,7 +118148,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": \"ERR_ASSERTION\"\n\n at /test/parallel/test-setproctitle.js:51:10\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ted: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-setproctitle.js:51:10\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118397,7 +118177,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n message: /Cannot find package 'fs'/,\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at main (/test/parallel/test-shadow-realm-allowed-builtin-modules.js:12:16)", + "tail": " generatedMessage: false,\n actual: undefined,\n expected: {\n message: /Cannot find package 'fs'/,\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at main (/test/parallel/test-shadow-realm-allowed-builtin-modules.js:12:16)", "retried": true }, "deno": { @@ -118529,7 +118309,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "g\", \"PerformanceServerTiming\",\n \"PerformanceTiming\", \"SubtleCrypto\", \"URLPattern\", \"WebSocket\", \"Worker\", \"self\", \"onmessage\",\n \"onerror\"\n],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-shadow-realm-globals.js:27:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "rver\", \"PerformanceObserverEntryList\", \"PerformanceResourceTiming\", \"PerformanceServerTiming\",\n \"PerformanceTiming\", \"SubtleCrypto\", \"URLPattern\", \"WebSocket\", \"Worker\", \"self\", \"onmessage\",\n \"onerror\"\n],\n expected: [],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-shadow-realm-globals.js:27:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118560,7 +118340,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nonymous> (/test/parallel/test-shadow-realm-import-value-resolve.js:31:20)\n\nTypeError: ResolveMessage: Cannot find module './fixtures/es-module-shadow-realm/re-export-state-counter.mjs' imported from /test/parallel/test-shadow-realm-import-value-resolve.js", + "tail": "Mismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-shadow-realm-import-value-resolve.js:31:20)\n\nTypeError: ResolveMessage: Cannot find module './fixtures/es-module-shadow-realm/re-export-state-counter.mjs' imported from /test/parallel/test-shadow-realm-import-value-resolve.js", "retried": true }, "deno": { @@ -118817,7 +118597,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rror(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"signal_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-signal-safety.js:6:20)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"signal_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-signal-safety.js:6:20)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118875,7 +118655,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3891\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3891/snapshot.blob --build-snapshot entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "odule not found \"/test/.tmp.3891/snapshot.blob\"\n\n[process 19578]: --- stdout ---\n\n[process 19578]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3891\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3891/snapshot.blob --build-snapshot entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118906,7 +118686,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-argv1.js:31:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n30 | console.log(child.stdout.toString());\n31 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-argv1.js:31:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118937,7 +118717,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "shot_main\"\n\n[process 75383]: --- stdout ---\n\n[process 75383]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/.tmp.3893\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --build-snapshot node:embedded_snapshot_main\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 19582]: --- stderr ---\nerror: Script not found \"node:embedded_snapshot_main\"\n\n[process 19582]: --- stdout ---\n\n[process 19582]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/.tmp.3893\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --build-snapshot node:embedded_snapshot_main\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118968,7 +118748,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "suite/test/.tmp.3894\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3894/snapshot.blob --build-snapshot /test/fixtures/snapshot/child-process-sync.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "19587]: --- stdout ---\n\n[process 19587]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3894\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3894/snapshot.blob --build-snapshot /test/fixtures/snapshot/child-process-sync.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118997,7 +118777,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-cjs-main.js:31:12\n\nBun v1.4.0 (macOS arm64)", + "tail": " | console.log(child.stdout.toString());\n31 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-cjs-main.js:31:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119028,7 +118808,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "iguration from snapshot\\.json/\n options: {\n cwd: \"/test/.tmp.3896\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3896/snapshot.blob --build-snapshot-config snapshot.json\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "shot.blob\"\n\n[process 19590]: --- stdout ---\n\n[process 19590]: status = 1, signal = null\nerror: - stderr did not match /Cannot read snapshot configuration from snapshot\\.json/\n options: {\n cwd: \"/test/.tmp.3896\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3896/snapshot.blob --build-snapshot-config snapshot.json\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119059,7 +118839,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-console.js:31:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "0 | console.log(child.stderr.toString());\n31 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-console.js:31:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119090,7 +118870,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "napshot.blob\"\n\n[process 72375]: --- stdout ---\n\n[process 72375]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.123\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.123/snapshot.blob --build-snapshot /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "pshot.blob\"\n\n[process 19594]: --- stdout ---\n\n[process 19594]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3898\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3898/snapshot.blob --build-snapshot /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119121,7 +118901,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t.blob\"\n\n[process 72378]: --- stdout ---\n\n[process 72378]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.124\",\n encoding: \"utf8\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.124/snapshot.blob --build-snapshot /test/fixtures/snapshot/cwd.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "blob\"\n\n[process 19595]: --- stdout ---\n\n[process 19595]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3899\",\n encoding: \"utf8\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3899/snapshot.blob --build-snapshot /test/fixtures/snapshot/cwd.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119274,7 +119054,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t.strictEqual(child.status, 9);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 9\n\n generatedMessage: true,\n actual: 1,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-error.js:30:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "derr);\n29 | console.log(child.stdout.toString());\n30 | assert.strictEqual(child.status, 9);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 9\n\n generatedMessage: true,\n actual: 1,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-error.js:30:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119305,7 +119085,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-eval.js:30:12\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n29 | console.log(child.stdout.toString());\n30 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-eval.js:30:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119336,7 +119116,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-gzip.js:36:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "| console.log(stderr);\n35 | console.log(stdout);\n36 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-gzip.js:36:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119371,7 +119151,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "qual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-incompatible.js:34:12\n\nBun v1.4.0 (macOS arm64)", + "tail": " console.log(child.stdout.toString());\n34 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-incompatible.js:34:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119404,7 +119184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "hild.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-namespaced-builtin.js:37:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "sole.log(child.stdout.toString());\n37 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-namespaced-builtin.js:37:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119435,7 +119215,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-net.js:28:12\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n27 | console.log(child.stdout.toString());\n28 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-net.js:28:12\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119466,7 +119246,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n cwd: \"/test/.tmp.3910\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --random_seed=42 --predictable --build-snapshot node:generate_default_snapshot_source\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ate_default_snapshot_source\"\n\n[process 19618]: --- stdout ---\n\n[process 19618]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n cwd: \"/test/.tmp.3910\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --random_seed=42 --predictable --build-snapshot node:generate_default_snapshot_source\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119497,7 +119277,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tmp.3911\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3911/snapshot.blob --build-snapshot /test/fixtures/snapshot/mutate-error-stack-trace-limit.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "stdout ---\n\n[process 19619]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3911\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3911/snapshot.blob --build-snapshot /test/fixtures/snapshot/mutate-error-stack-trace-limit.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119528,7 +119308,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 72525]: --- stdout ---\n\n[process 72525]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.129\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --stack-trace-limit=50 --snapshot-blob /test/.tmp.129/snapshot.blob --build-snapshot /test/fixtures/snapshot/error-stack.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "cess 19622]: --- stdout ---\n\n[process 19622]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3912\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --stack-trace-limit=50 --snapshot-blob /test/.tmp.3912/snapshot.blob --build-snapshot /test/fixtures/snapshot/error-stack.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119559,7 +119339,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-typescript.js:37:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "nsole.log(stderr);\n36 | console.log(stdout);\n37 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-typescript.js:37:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119590,7 +119370,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-umd.js:30:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " | console.log(stderr);\n29 | console.log(stdout);\n30 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-umd.js:30:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119621,7 +119401,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rpus>/test/.tmp.135/snapshot.blob\"\n\n[process 55344]: --- stdout ---\n\n[process 55344]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.135\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.135/snapshot.blob --build-snapshot /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "s>/test/.tmp.3915/snapshot.blob\"\n\n[process 19707]: --- stdout ---\n\n[process 19707]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3915\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3915/snapshot.blob --build-snapshot /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119652,7 +119432,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at runTest (/test/parallel/test-snapshot-weak-reference.js:31:14)\n at /test/parallel/test-snapshot-weak-reference.js:58:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at runTest (/test/parallel/test-snapshot-weak-reference.js:31:14)\n at /test/parallel/test-snapshot-weak-reference.js:58:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119683,7 +119463,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "not found \"/test/.tmp.136/snapshot.blob\"\\n'\n\n generatedMessage: true,\n actual: \"error: Module not found \\\"/test/.tmp.136/snapshot.blob\\\"\\n\",\n expected: /Error: Creating workers is not supported in startup snapshot/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-worker.js:25:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "t found \"/test/.tmp.3917/snapshot.blob\"\\n'\n\n generatedMessage: true,\n actual: \"error: Module not found \\\"/test/.tmp.3917/snapshot.blob\\\"\\n\",\n expected: /Error: Creating workers is not supported in startup snapshot/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-snapshot-worker.js:25:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119851,7 +119631,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "jectSetPrototypeOf,\n5 | Symbol,\n6 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/socketaddress.js:6:5)\n at (/test/parallel/test-socketaddress.js:11:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "---------------\n1 | 'use strict';\n2 | \n3 | const {\n4 | ObjectSetPrototypeOf,\n5 | Symbol,\n6 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/socketaddress.js:6:5)\n at (/test/parallel/test-socketaddress.js:11:3)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -119880,7 +119660,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "vered\ncovered\n\n43 | );\n44 | const {\n45 | originalLine,\n46 | originalColumn,\n47 | originalSource\n48 | } = sourceMap.findEntry(0, 29);\n ^\nTypeError: undefined is not an object (evaluating 'sourceMap.findEntry')\n at (/test/parallel/test-source-map-api.js:48:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "covered\ncovered\ncovered\ncovered\ncovered\n\n43 | );\n44 | const {\n45 | originalLine,\n46 | originalColumn,\n47 | originalSource\n48 | } = sourceMap.findEntry(0, 29);\n ^\nTypeError: undefined is not an object (evaluating 'sourceMap.findEntry')\n at (/test/parallel/test-source-map-api.js:48:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119911,7 +119691,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "efined,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at run (/test/parallel/test-source-map-cjs-require-cache.js:25:10)\n at /test/parallel/test-source-map-cjs-require-cache.js:29:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "Error: Expected \"actual\" to be strictly unequal to:\n\nundefined\n generatedMessage: true,\n actual: undefined,\n expected: undefined,\n operator: \"notStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at run (/test/parallel/test-source-map-cjs-require-cache.js:25:10)\n at /test/parallel/test-source-map-cjs-require-cache.js:29:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119942,7 +119722,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".tmp.3926/source_map_1\",\n syscall: \"scandir\",\n errno: -2,\n code: \"ENOENT\"\n\n at getSourceMapFromCache (/test/parallel/test-source-map-enable.js:388:24)\n at (/test/parallel/test-source-map-enable.js:33:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nENOENT: no such file or directory, scandir '/test/.tmp.3926/source_map_1'\n path: \"/test/.tmp.3926/source_map_1\",\n syscall: \"scandir\",\n errno: -2,\n code: \"ENOENT\"\n\n at getSourceMapFromCache (/test/parallel/test-source-map-enable.js:388:24)\n at (/test/parallel/test-source-map-enable.js:33:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -120024,11 +119804,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "{ DatabaseSync } = await import('node:sqlite');\n5 | \n6 | describe('DatabaseSync.prototype.aggregate()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-sqlite-aggregate-function.mjs:6:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120053,11 +119831,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "onst { suite, it } = require('node:test');\n 9 | \n10 | suite('DatabaseSync.prototype.setAuthorizer()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-authz.js:10:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120091,7 +119867,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "35 | }\n36 | \n37 | return database;\n38 | }\n39 | \n40 | describe('backup()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-sqlite-backup.mjs:40:1\n\nBun v1.4.0 (macOS arm64)", + "tail": ")', 'global.gc' is undefined)\n at (/test/parallel/test-sqlite-backup.mjs:346:12)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) source database is kept alive while a backup is in flight [7.56ms]\n\n 16 pass\n 1 fail\nRan 17 tests across 1 file. [80.00ms]", "retried": true }, "deno": { @@ -120120,7 +119896,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "new Error('unexpected journal_mode');\n20 | }\n21 | }\n22 | \n23 | test('by default, defensive mode is on', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-sqlite-config.js:23:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "e.\n code: \"ERR_LOAD_SQLITE_EXTENSION\"\n\n at (/test/parallel/test-sqlite-config.js:66:14)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) enableLoadExtension() throws if database is not open [0.81ms]\n\n 6 pass\n 1 fail\nRan 7 tests across 1 file. [56.00ms]", "retried": true }, "deno": { @@ -120150,11 +119926,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " { suite, test } = require('node:test');\n7 | \n8 | suite('DatabaseSync.prototype.function()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-custom-functions.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120179,11 +119953,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "n join(tmpdir.path, `database-${cnt++}.db`);\n14 | }\n15 | \n16 | suite('data binding and mapping', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-data-types.js:16:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120208,11 +119980,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "n(tmpdir.path, `database-${cnt++}.db`);\n15 | }\n16 | \n17 | suite('DatabaseSync() constructor', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-database-sync.js:17:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120239,11 +120009,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "node:sqlite');\n5 | const { suite, test } = require('node:test');\n6 | \n7 | suite('DatabaseSync limits', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-limits.js:7:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120268,11 +120036,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "urn join(tmpdir.path, `database-${cnt++}.db`);\n14 | }\n15 | \n16 | suite('named parameters', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-named-parameters.js:16:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120297,11 +120063,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " const { suite, test } = require('node:test');\n6 | \n7 | suite('DatabaseSync.prototype.serialize()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-serialize.js:7:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120331,7 +120095,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "25 | }\n26 | t.assert.deepStrictEqual(actual, expected, message);\n27 | };\n28 | }\n29 | \n30 | test('creating and applying a changeset', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-sqlite-session.js:30:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "s.trackedId')\n at (/test/common/gc.js:24:11)\n at nextTick (native:45:20)\n at Worker (unknown)\n at new Worker (node:worker_threads:554:39)\n at (/test/parallel/test-sqlite-session.js:689:26)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)", "retried": true }, "deno": { @@ -120361,11 +120125,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "te, test } = require('node:test');\n7 | \n8 | suite('StatementSync.prototype.columns()', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-statement-sync-columns.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120393,7 +120155,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | \n13 | function nextDb() {\n14 | return join(tmpdir.path, `database-${cnt++}.db`);\n15 | }\n16 | \n17 | suite('StatementSync() constructor', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-statement-sync.js:17:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nput is false [1.09ms]\n(pass) options.allowBareNamedParameters > throws when input is not a boolean [1.23ms]\n(pass) options.allowBareNamedParameters > setAllowBareNamedParameters can override prepare option [1.80ms]\n\n1 tests failed:\n(fail) StatementSync.prototype.iterate() > iterator keeps the prepared statement from being collected [0.96ms]\n\n 50 pass\n 1 fail\nRan 51 tests across 1 file. [134.00ms]", "retried": true }, "deno": { @@ -120426,7 +120188,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", text TEXT)');\n17 | sql.clear();\n18 | });\n19 | \n20 | test('throws error if database is not open', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-sqlite-template-tag.js:20:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": ". (In 'global.gc()', 'global.gc' is undefined)\n at gcUntil (/test/common/gc.js:58:20)\n at async (/test/parallel/test-sqlite-template-tag.js:274:9)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) tag store prevents circular reference leaks [73.97ms]\n\n 12 pass\n 2 fail\nRan 14 tests across 1 file. [131.00ms]", "retried": true }, "deno": { @@ -120455,9 +120217,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": " return join(tmpdir.path, `database-${cnt++}.db`);\n16 | }\n17 | \n18 | test('waits to acquire lock', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-sqlite-timeout.js:18:1)\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -120483,11 +120245,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "turn join(tmpdir.path, `database-${cnt++}.db`);\n14 | }\n15 | \n16 | suite('manual transactions', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-transactions.js:16:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120512,11 +120272,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "w', DataView],\n30 | ];\n31 | \n32 | suite('StatementSync with TypedArray/DataView', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite-typed-array-and-data-view.js:32:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -120544,7 +120302,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ");\n7 | const { nextDb } = require('../sqlite/next-db.js');\n8 | \n9 | suite('accessing the node:sqlite module', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-sqlite.js:9:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\"\n\n at (/test/parallel/test-sqlite.js:330:8)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n at (node:test:1597:13)\n(fail) SQL APIs enabled at build time > geopoly is enabled [0.28ms]\n\n 17 pass\n 4 fail\nRan 21 tests across 1 file. [101.00ms]", "retried": true }, "deno": { @@ -120606,7 +120364,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n'ShadowRealm' !== ''\n\n generatedMessage: true,\n actual: \"ShadowRealm\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-startup-empty-regexp-statics.js:12:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "d_process');\n11 | \n12 | assert.strictEqual(RegExp.$_, '');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'ShadowRealm' !== ''\n\n generatedMessage: true,\n actual: \"ShadowRealm\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-startup-empty-regexp-statics.js:12:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -120637,7 +120395,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "$_, '');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'lo0' !== ''\n\n generatedMessage: true,\n actual: \"lo0\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-startup-empty-regexp-statics.mjs:8:10\n\nBun v1.4.0 (macOS arm64)", + "tail": ".isInsideDirWithUnusualChars) {\n8 | assert.strictEqual(RegExp.$_, '');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'lo0' !== ''\n\n generatedMessage: true,\n actual: \"lo0\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-startup-empty-regexp-statics.mjs:8:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -120668,7 +120426,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ictEqual(child.status, 9);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 9\n\n generatedMessage: true,\n actual: 0,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-startup-large-pages.js:23:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " [ '--use-largepages=xyzzy', '-p', '42' ]);\n23 | assert.strictEqual(child.status, 9);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 9\n\n generatedMessage: true,\n actual: 0,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-startup-large-pages.js:23:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -120969,7 +120727,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stdin-script-child.js:26:12\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "o: -32,\n code: \"EPIPE\"\n\n at end (unknown:1:1)\n at internal:fs/streams:402:23\n at _destroy (internal:streams/destroy:63:18)\n at destroy (internal:streams/destroy:41:13)\n at internal:streams/writable:601:23\n at finish (internal:streams/writable:482:21)\n at internal:streams/writable:469:19\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -121187,7 +120945,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ess').spawn;\n25 | \n26 | if (process.argv[2] === 'child') {\n27 | process.stdin.resume();\n28 | process.stdin._handle.close();\n ^\nTypeError: undefined is not an object (evaluating 'process.stdin._handle.close')\n at (/test/parallel/test-stdout-close-unref.js:28:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n = require('../common');\n24 | const spawn = require('child_process').spawn;\n25 | \n26 | if (process.argv[2] === 'child') {\n27 | process.stdin.resume();\n28 | process.stdin._handle.close();\n ^\nTypeError: undefined is not an object (evaluating 'process.stdin._handle.close')\n at (/test/parallel/test-stdout-close-unref.js:28:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -121459,7 +121217,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tty_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-stream-base-prototype-accessors-enumerability.js:14:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tty_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-stream-base-prototype-accessors-enumerability.js:14:13)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -121706,7 +121464,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at emit (node:events:97:22)\n at resume_ (internal:streams/readable:591:54)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "llel/test-stream-destroy.js:126\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at mustNotCall (/test/common/index.js:568:12)\n at emit (node:events:97:22)\n at resume_ (internal:streams/readable:591:54)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -122426,7 +122184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "utils:92:16)\n at broadcast (internal:streams/iter/broadcast:418:84)\n at testBlockBackpressure (/test/parallel/test-stream-iter-broadcast-backpressure.js:56:37)\n at (/test/parallel/test-stream-iter-broadcast-backpressure.js:184:3)", + "tail": "dest', 'drop-newest'. Received 'unbounded'\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at validateBackpressure (internal:streams/iter/utils:92:16)\n at broadcast (internal:streams/iter/broadcast:418:84)\n at testBlockBackpressure (/test/parallel/test-stream-iter-broadcast-backpressure.js:56:37)\n at (/test/parallel/test-stream-iter-broadcast-backpressure.js:184:3)", "retried": true }, "deno": { @@ -122459,7 +122217,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testWriteSync (/test/parallel/test-stream-iter-broadcast-basic.js:83:10)\n at /test/parallel/test-stream-iter-broadcast-basic.js:324:3", + "tail": "se);\n ^\nAssertionError: Expected values to be strictly equal:\n\ntrue !== false\n\n generatedMessage: true,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testWriteSync (/test/parallel/test-stream-iter-broadcast-basic.js:83:10)\n at /test/parallel/test-stream-iter-broadcast-basic.js:324:3", "retried": true }, "deno": { @@ -122492,7 +122250,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/iter/utils:92:16)\n at broadcast (internal:streams/iter/broadcast:418:84)\n at testBroadcastWriteAbort (/test/parallel/test-stream-iter-broadcast-coverage.js:17:37)\n at (/test/parallel/test-stream-iter-broadcast-coverage.js:132:3)", + "tail": "rop-oldest', 'drop-newest'. Received 'unbounded'\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at validateBackpressure (internal:streams/iter/utils:92:16)\n at broadcast (internal:streams/iter/broadcast:418:84)\n at testBroadcastWriteAbort (/test/parallel/test-stream-iter-broadcast-coverage.js:17:37)\n at (/test/parallel/test-stream-iter-broadcast-coverage.js:132:3)", "retried": true }, "deno": { @@ -122525,7 +122283,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e: \"ERR_INVALID_ARG_TYPE\"\n\n at from (internal:streams/iter/broadcast:443:31)\n at testBroadcastFromStringInput (/test/parallel/test-stream-iter-broadcast-from.js:47:39)\n at (/test/parallel/test-stream-iter-broadcast-from.js:205:3)", + "tail": "eError: The \"input\" argument must be an instance of Broadcastable, AsyncIterable, or Iterable. Received type string ('abc')\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at from (internal:streams/iter/broadcast:443:31)\n at testBroadcastFromStringInput (/test/parallel/test-stream-iter-broadcast-from.js:47:39)\n at (/test/parallel/test-stream-iter-broadcast-from.js:205:3)", "retried": true }, "deno": { @@ -122558,7 +122316,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Mismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-stream-iter-consumers-bytes.js:270:16)\n\n(node:77351) ExperimentalWarning: stream/iter is an experimental feature and might change at any time\n(Use `bun --trace-warnings ...` to show where the warning was created)", + "tail": "Mismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-stream-iter-consumers-bytes.js:270:16)\n\n(node:20105) ExperimentalWarning: stream/iter is an experimental feature and might change at any time\n(Use `bun --trace-warnings ...` to show where the warning was created)", "retried": true }, "deno": { @@ -122591,7 +122349,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "test-stream-iter-consumers-merge.js:323:14\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at testMergePrimaryAndCleanupError (/test/parallel/test-stream-iter-consumers-merge.js:315:16)\n at processTicksAndRejections (native:7:39)", + "tail": ",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-iter-consumers-merge.js:323:14\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at testMergePrimaryAndCleanupError (/test/parallel/test-stream-iter-consumers-merge.js:315:16)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -122740,7 +122498,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cts\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at testWriterEndWithPreAbortedSignal (/test/parallel/test-stream-iter-duplex.js:134:16)\n at processTicksAndRejections (native:7:39)", + "tail": " actual: undefined,\n expected: [Function],\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at testWriterEndWithPreAbortedSignal (/test/parallel/test-stream-iter-duplex.js:134:16)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -122773,7 +122531,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at testFromSyncIterableRejectsNestedToAsyncStreamable (/test/parallel/test-stream-iter-from-async.js:75:16)\n at processTicksAndRejections (native:7:39)", + "tail": "ERR_INVALID_ARG_TYPE\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at testFromSyncIterableRejectsNestedToAsyncStreamable (/test/parallel/test-stream-iter-from-async.js:75:16)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -122837,7 +122595,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at fromSync (internal:streams/iter/from:227:29)\n at testFromSyncPrefersIteratorForDualIterable (/test/parallel/test-stream-iter-from-sync.js:199:31)\n at (/test/parallel/test-stream-iter-from-sync.js:259:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\" argument must be an a synchronous input (not AsyncIterable). Received an instance of Object\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at fromSync (internal:streams/iter/from:227:29)\n at testFromSyncPrefersIteratorForDualIterable (/test/parallel/test-stream-iter-from-sync.js:199:31)\n at (/test/parallel/test-stream-iter-from-sync.js:259:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -122959,7 +122717,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n- 'aborted'\n\n generatedMessage: true,\n actual: \"timed out\",\n expected: \"aborted\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testPipeToLiveSignalNoTransformsPendingNext (/test/parallel/test-stream-iter-pipeto-signal.js:63:10)\n at processTicksAndRejections (native:7:39)", + "tail": " values to be strictly equal:\n+ actual - expected\n\n+ 'timed out'\n- 'aborted'\n\n generatedMessage: true,\n actual: \"timed out\",\n expected: \"aborted\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testPipeToLiveSignalNoTransformsPendingNext (/test/parallel/test-stream-iter-pipeto-signal.js:63:10)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -122992,7 +122750,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testPipeToSyncPushWriterStrictFalseRejected (/test/parallel/test-stream-iter-pipeto-writev.js:165:10)\n at /test/parallel/test-stream-iter-pipeto-writev.js:250:3", + "tail": "ionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_OUT_OF_RANGE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testPipeToSyncPushWriterStrictFalseRejected (/test/parallel/test-stream-iter-pipeto-writev.js:165:10)\n at /test/parallel/test-stream-iter-pipeto-writev.js:250:3", "retried": true }, "deno": { @@ -123058,7 +122816,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Mismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-stream-iter-pull-async.js:422:18)\n\n(node:77471) ExperimentalWarning: stream/iter is an experimental feature and might change at any time\n(Use `bun --trace-warnings ...` to show where the warning was created)", + "tail": "Mismatched noop function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-stream-iter-pull-async.js:422:18)\n\n(node:20124) ExperimentalWarning: stream/iter is an experimental feature and might change at any time\n(Use `bun --trace-warnings ...` to show where the warning was created)", "retried": true }, "deno": { @@ -123122,7 +122880,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testStrictBackpressure (/test/parallel/test-stream-iter-push-backpressure.js:18:10)\n at /test/parallel/test-stream-iter-push-backpressure.js:153:3", + "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\ntrue !== false\n\n generatedMessage: true,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testStrictBackpressure (/test/parallel/test-stream-iter-push-backpressure.js:18:10)\n at /test/parallel/test-stream-iter-push-backpressure.js:153:3", "retried": true }, "deno": { @@ -123155,7 +122913,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: undefined,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testCanWrite (/test/parallel/test-stream-iter-push-basic.js:34:10)\n at /test/parallel/test-stream-iter-push-basic.js:180:3", + "tail": " ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- true\n\n generatedMessage: true,\n actual: undefined,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testCanWrite (/test/parallel/test-stream-iter-push-basic.js:34:10)\n at /test/parallel/test-stream-iter-push-basic.js:180:3", "retried": true }, "deno": { @@ -123188,7 +122946,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testWritevSyncInvalidChunkDoesNotQueue (/test/parallel/test-stream-iter-push-writer.js:186:10)\n at /test/parallel/test-stream-iter-push-writer.js:583:3", + "tail": "ssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testWritevSyncInvalidChunkDoesNotQueue (/test/parallel/test-stream-iter-push-writer.js:186:10)\n at /test/parallel/test-stream-iter-push-writer.js:583:3", "retried": true }, "deno": { @@ -123283,7 +123041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "essure (internal:streams/iter/utils:92:16)\n at share (internal:streams/iter/share:392:84)\n at testShareAbortSignal (/test/parallel/test-stream-iter-share-async.js:143:18)\n at (/test/parallel/test-stream-iter-share-async.js:360:3)", + "tail": "f: 'strict', 'block', 'drop-oldest', 'drop-newest'. Received 'unbounded'\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at validateBackpressure (internal:streams/iter/utils:92:16)\n at share (internal:streams/iter/share:392:84)\n at testShareAbortSignal (/test/parallel/test-stream-iter-share-async.js:143:18)\n at (/test/parallel/test-stream-iter-share-async.js:360:3)", "retried": true }, "deno": { @@ -123345,7 +123103,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "re (internal:streams/iter/utils:92:16)\n at share (internal:streams/iter/share:392:84)\n at testShareBlockBackpressure (/test/parallel/test-stream-iter-share-from.js:114:18)\n at (/test/parallel/test-stream-iter-share-from.js:242:3)", + "tail": "strict', 'block', 'drop-oldest', 'drop-newest'. Received 'unbounded'\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at validateBackpressure (internal:streams/iter/utils:92:16)\n at share (internal:streams/iter/share:392:84)\n at testShareBlockBackpressure (/test/parallel/test-stream-iter-share-from.js:114:18)\n at (/test/parallel/test-stream-iter-share-from.js:242:3)", "retried": true }, "deno": { @@ -123407,7 +123165,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ue,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testBytesSyncSAB (/test/parallel/test-stream-iter-sharedarraybuffer.js:55:10)\n at /test/parallel/test-stream-iter-sharedarraybuffer.js:186:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "tanceof ArrayBuffer);\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testBytesSyncSAB (/test/parallel/test-stream-iter-sharedarraybuffer.js:55:10)\n at /test/parallel/test-stream-iter-sharedarraybuffer.js:186:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -123558,7 +123316,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eSyncSource (internal:streams/iter/from:77:18)\n at (internal:streams/iter/from:235:14)\n at collectSync (internal:streams/iter/consumers:8:18)\n at bytesSync (internal:streams/iter/consumers:80:71)\n at testStatefulSyncTransformYieldsNull (/test/parallel/test-stream-iter-transform-output.js:163:16)", + "tail": "anonymous> (internal:streams/iter/pull:405:14)\n at normalizeSyncSource (internal:streams/iter/from:77:18)\n at (internal:streams/iter/from:235:14)\n at collectSync (internal:streams/iter/consumers:8:18)\n at bytesSync (internal:streams/iter/consumers:80:71)\n at testStatefulSyncTransformYieldsNull (/test/parallel/test-stream-iter-transform-output.js:163:16)", "retried": true }, "deno": { @@ -123649,7 +123407,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "YPE' });\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-iter-validation.js:25:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "throws(() => push({ budget: 'bad' }), { code: 'ERR_INVALID_ARG_TYPE' });\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-iter-validation.js:25:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -123682,7 +123440,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ew PushQueue (internal:streams/iter/push:32:86)\n at push (internal:streams/iter/push:384:58)\n at testBasicWrite (/test/parallel/test-stream-iter-writable-from.js:20:32)\n at (/test/parallel/test-stream-iter-writable-from.js:621:3)", + "tail": "eceived 'unbounded'\n code: \"ERR_INVALID_ARG_VALUE\"\n\n at validateBackpressure (internal:streams/iter/utils:92:16)\n at new PushQueue (internal:streams/iter/push:32:86)\n at push (internal:streams/iter/push:384:58)\n at testBasicWrite (/test/parallel/test-stream-iter-writable-from.js:20:32)\n at (/test/parallel/test-stream-iter-writable-from.js:621:3)", "retried": true }, "deno": { @@ -123715,7 +123473,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testCanWrite (/test/parallel/test-stream-iter-writable-interop.js:380:10)\n at /test/parallel/test-stream-iter-writable-interop.js:650:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "be strictly equal:\n+ actual - expected\n\n+ undefined\n- true\n\n generatedMessage: true,\n actual: undefined,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at testCanWrite (/test/parallel/test-stream-iter-writable-interop.js:380:10)\n at /test/parallel/test-stream-iter-writable-interop.js:650:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -124649,7 +124407,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ratedMessage: true,\n actual: undefined,\n expected: \"ERR_STREAM_PREMATURE_CLOSE\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-pipeline.js:276:14\n at internal:shared:97:27\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "al - expected\n\n+ undefined\n- 'ERR_STREAM_PREMATURE_CLOSE'\n\n generatedMessage: true,\n actual: undefined,\n expected: \"ERR_STREAM_PREMATURE_CLOSE\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-pipeline.js:276:14\n at internal:shared:97:27\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -124846,7 +124604,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ly equal:\n\ntrue !== false\n\n generatedMessage: true,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-readable-async-iter-half-open-duplex.js:34:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": ";\n ^\nAssertionError: Expected values to be strictly equal:\n\ntrue !== false\n\n generatedMessage: true,\n actual: true,\n expected: false,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-readable-async-iter-half-open-duplex.js:34:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -125753,7 +125511,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " []\n- [\n- '�'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"�\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-readable-setEncoding-existing-buffers.js:103:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "xpected values to be strictly deep-equal:\n+ actual - expected\n\n+ []\n- [\n- '�'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"�\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream-readable-setEncoding-existing-buffers.js:103:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -126600,7 +126358,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-stream-wrap-drain.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-stream-wrap-drain.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -126629,7 +126387,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-stream-wrap-encoding.js:5:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-stream-wrap-encoding.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -126658,7 +126416,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-stream-wrap.js:7:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-stream-wrap.js:7:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -128093,7 +127851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream2-readable-wrap-proxy-methods.js:28:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ethod, 'function');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'function'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"function\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-stream2-readable-wrap-proxy-methods.js:28:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -128479,7 +128237,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "194 | assert.throws(\n ^\nTypeError: The \"buf\" argument must be of type Buffer, TypedArray, or DataView. Received null\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-string-decoder.js:194:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": " message: 'Unknown encoding: test'\n191 | }\n192 | );\n193 | \n194 | assert.throws(\n ^\nTypeError: The \"buf\" argument must be of type Buffer, TypedArray, or DataView. Received null\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-string-decoder.js:194:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -128624,7 +128382,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "34 | if (warnings === 0)\n35 | assert.strictEqual(actualWarnings, null);\n36 | else\n37 | assert.strictEqual(actualWarnings.length, warnings);\n ^\nTypeError: null is not an object (evaluating 'actualWarnings.length')\n at (/test/parallel/test-sync-io-option.js:37:26)", + "tail": "err.match(/WARNING: Detected use of sync API[\\s\\S]*statSync/g);\n34 | if (warnings === 0)\n35 | assert.strictEqual(actualWarnings, null);\n36 | else\n37 | assert.strictEqual(actualWarnings.length, warnings);\n ^\nTypeError: null is not an object (evaluating 'actualWarnings.length')\n at (/test/parallel/test-sync-io-option.js:37:26)", "retried": true }, "deno": { @@ -128682,7 +128440,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tcp-wrap-connect.js:11:26)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tcp-wrap-connect.js:11:26)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -128711,7 +128469,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tcp-wrap-listen.js:13:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tcp-wrap-listen.js:13:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -128831,7 +128589,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "https://github.com/nodejs/node/issues/58179\n14 | describe('testpy env var via comment', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-testpy-env-var-via-comment.js:14:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ternal/options.js:10:5)\n at (/test/parallel/test-testpy-env-var-via-comment.js:23:11)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) testpy env var via comment > should interop with flags [0.98ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [55.00ms]", "retried": true }, "deno": { @@ -128864,7 +128622,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s';\n4 | import { describe, it } from 'node:test';\n5 | \n6 | \n7 | describe('--trace-uncaught', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-throw-error-with-getter-throw-traced.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-throw-error-with-getter-throw-traced.mjs:22:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) --trace-uncaught > prints a trace on process exit for uncaught errors [23.40ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [83.00ms]", "retried": true }, "deno": { @@ -128895,7 +128653,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process';\n4 | import { describe, it } from 'node:test';\n5 | \n6 | \n7 | describe('--trace-uncaught', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-throw-undefined-or-null-traced.mjs:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "\"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-throw-undefined-or-null-traced.mjs:15:14\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) --trace-uncaught > prints a trace on process exit for uncaught errors [22.93ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [83.00ms]", "retried": true }, "deno": { @@ -128926,7 +128684,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".find((name) => /\\.log$/.test(name));\n20 | assert(logfile);\n ^\nAssertionError: undefined == true\n generatedMessage: true,\n actual: undefined,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tick-processor-arguments.js:20:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " files = fs.readdirSync(tmpdir.path);\n19 | const logfile = files.find((name) => /\\.log$/.test(name));\n20 | assert(logfile);\n ^\nAssertionError: undefined == true\n generatedMessage: true,\n actual: undefined,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tick-processor-arguments.js:20:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -128957,7 +128715,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ototypeSlice,\n37 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/v8_prof_polyfill.js:37:5)\n at (/test/parallel/test-tick-processor-version-check.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "32 | \n33 | const {\n34 | ArrayPrototypePush,\n35 | ArrayPrototypePushApply,\n36 | ArrayPrototypeSlice,\n37 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/v8_prof_polyfill.js:37:5)\n at (/test/parallel/test-tick-processor-version-check.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129042,7 +128800,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "987]: --- stdout ---\n\n[process 80987]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --expose-internals --expose-gc --no-async-context-frame /test/parallel/test-timers-async-store-leak.js child\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "lel/test-timers-async-store-leak.js:69:21\n\nBun v1.4.0 (macOS arm64)\n\n[process 20357]: --- stdout ---\n\n[process 20357]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --expose-internals --expose-gc --no-async-context-frame /test/parallel/test-timers-async-store-leak.js child\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129264,7 +129022,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"timers\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-timers-fast-calls.js:8:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": " | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"timers\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-timers-fast-calls.js:8:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129295,7 +129053,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-timers-immediate-promisified.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-timers-immediate-promisified.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129324,7 +129082,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tEqual(stage, 1));\n50 | throw new Error('setImmediate Err');\n51 | });\n52 | d1.run(() => setImmediate(() => {\n53 | throw new Error('setImmediate Err');\n ^\nerror: setImmediate Err\n at (/test/parallel/test-timers-immediate-queue-throw.js:53:37)\n\nBun v1.4.0 (macOS arm64)", + "tail": "48 | threw = true;\n49 | process.nextTick(() => assert.strictEqual(stage, 1));\n50 | throw new Error('setImmediate Err');\n51 | });\n52 | d1.run(() => setImmediate(() => {\n53 | throw new Error('setImmediate Err');\n ^\nerror: setImmediate Err\n at (/test/parallel/test-timers-immediate-queue-throw.js:53:37)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129490,7 +129248,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-timers-interval-promisified.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-timers-interval-promisified.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129764,7 +129522,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-timers-nested.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-timers-nested.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129793,7 +129551,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "7 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-timers-next-tick.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-timers-next-tick.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129876,7 +129634,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"timers\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-timers-now.js:7:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": " !1;\n76 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"timers\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-timers-now.js:7:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129905,7 +129663,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"timers\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-timers-ordering.js:28:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "6 | }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"timers\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-timers-ordering.js:28:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129961,7 +129719,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_ILLEGAL_CONSTRUCTOR\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-timers-promises-scheduler.js:49:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "());\n48 | \n49 | assert.throws(() => new scheduler.constructor(), {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_ILLEGAL_CONSTRUCTOR\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-timers-promises-scheduler.js:49:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129987,11 +129745,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ode:test');\n 9 | \n10 | test('(node:timers/promises) is equal to (node:timers).promises', common.mustCall(() => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-timers-promises.js:10:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -130046,7 +129802,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-timers-refresh.js:36:12)\n at forEach (1:11)\n at (/test/parallel/test-timers-refresh.js:35:59)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nrefTimeout(cb)', 'setUnrefTimeout' is undefined)\n at (/test/parallel/test-timers-refresh.js:37:13)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-timers-refresh.js:36:12)\n at forEach (1:11)\n at (/test/parallel/test-timers-refresh.js:35:59)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -130075,7 +129831,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "parallel/test-timers-reset-process-domain-on-throw.js:32:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at emitError (node:domain:16:11)\n at (node:domain:49:16)\n at err (/test/parallel/test-timers-reset-process-domain-on-throw.js:21:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": " (node:assert:179:14)\n at handleDomainError (/test/parallel/test-timers-reset-process-domain-on-throw.js:32:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at emitError (node:domain:16:11)\n at (node:domain:49:16)\n at err (/test/parallel/test-timers-reset-process-domain-on-throw.js:21:5)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -130241,7 +129997,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-timers-timeout-promisified.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | SafeWeakSet,\n20 | String,\n21 | Symbol,\n22 | SymbolFor,\n23 | SymbolToStringTag,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/event_target.js:24:5)\n at (/test/parallel/test-timers-timeout-promisified.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131040,7 +130796,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nAlgorithms();\n ^\nTypeError: tls.getCertificateCompressionAlgorithms is not a function. (In 'tls.getCertificateCompressionAlgorithms()', 'tls.getCertificateCompressionAlgorithms' is undefined)\n at (/test/parallel/test-tls-certificate-compression.js:11:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n10 | \n11 | const supportedAlgs = tls.getCertificateCompressionAlgorithms();\n ^\nTypeError: tls.getCertificateCompressionAlgorithms is not a function. (In 'tls.getCertificateCompressionAlgorithms()', 'tls.getCertificateCompressionAlgorithms' is undefined)\n at (/test/parallel/test-tls-certificate-compression.js:11:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131073,7 +130829,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-check-server-identity.js:432:10\n at forEach (native:1:11)\n at /test/parallel/test-tls-check-server-identity.js:430:7\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n actual: undefined,\n expected: \"Host: foo。bar.example.com. is not in the cert's altnames: DNS:*.example.com\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-check-server-identity.js:432:10\n at forEach (native:1:11)\n at /test/parallel/test-tls-check-server-identity.js:430:7\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131104,7 +130860,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "!MD5:!PSK:!SRP:!CAMELLIA\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-cipher-list.js:22:14\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "A256:DHE-RSA-AES256-SHA256:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!SRP:!CAMELLIA\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-cipher-list.js:22:14\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131389,11 +131145,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " | \n14 | describe('allowPartialTrustChain', { skip: !common.hasCrypto }, function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-tls-client-allow-partial-trust-chain.js:14:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -131454,7 +131208,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "31)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at test1 (/test/parallel/test-tls-client-default-ciphers.js:40:10)\n at (/test/parallel/test-tls-client-default-ciphers.js:44:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eError: The \"options\" or \"port\" or \"path\" argument must be specified\n code: \"ERR_MISSING_ARGS\"\n\n at connect (node:net:1022:31)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at test1 (/test/parallel/test-tls-client-default-ciphers.js:40:10)\n at (/test/parallel/test-tls-client-default-ciphers.js:44:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131545,7 +131299,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Slice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-tls-client-mindhsize.js:12:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "PrototypeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-tls-client-mindhsize.js:12:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131796,7 +131550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "inding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"crypto\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-clientcertengine-unsupported.js:11:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"crypto\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-clientcertengine-unsupported.js:11:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131881,7 +131635,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-close-notify.js:32:26)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"stream_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-close-notify.js:32:26)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -131991,7 +131745,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\"Bye\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-connect-allow-half-open-option.js:43:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "= 'Bye'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"Bye\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-connect-allow-half-open-option.js:43:12\n at emit (node:events:118:23)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -132101,7 +131855,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-tls-connect-keepalive-nodelay.js:18:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const {\n4 | RegExp,\n5 | RegExpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-tls-connect-keepalive-nodelay.js:18:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -132711,7 +132465,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tls_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-enable-trace-cli.js:17:6)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tls_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-enable-trace-cli.js:17:6)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -132740,7 +132494,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rror(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tls_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-enable-trace.js:17:6)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tls_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-enable-trace.js:17:6)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -133072,7 +132826,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cted: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-generic-stream.js:35:12\n at afterWrite (internal:streams/writable:350:26)\n at onwrite (internal:streams/writable:340:17)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " !== 0\n\n generatedMessage: true,\n actual: undefined,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-generic-stream.js:35:12\n at afterWrite (internal:streams/writable:350:26)\n at onwrite (internal:streams/writable:340:17)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -133380,7 +133134,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Expected values to be strictly equal:\n\n134 !== 121\n\n generatedMessage: true,\n actual: 134,\n expected: 121,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-get-ca-certificates-worker-no-use-system-ca.js:59:10\n at processTicksAndRejections (native:7:39)", + "tail": "tLen, flagDisabled.bundledLen);\n ^\nAssertionError: Expected values to be strictly equal:\n\n134 !== 121\n\n generatedMessage: true,\n actual: 134,\n expected: 121,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-get-ca-certificates-worker-no-use-system-ca.js:59:10\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -133409,7 +133163,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r: Expected values to be strictly equal:\n\n121 !== 134\n\n generatedMessage: true,\n actual: 121,\n expected: 134,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-get-ca-certificates-worker-use-system-ca.js:38:10\n at processTicksAndRejections (native:7:39)", + "tail": ";\n37 | \n38 | assert.strictEqual(\n ^\nAssertionError: Expected values to be strictly equal:\n\n121 !== 134\n\n generatedMessage: true,\n actual: 121,\n expected: 134,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-get-ca-certificates-worker-use-system-ca.js:38:10\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -133548,7 +133302,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n\nBun v1.4.0 (macOS arm64)\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-handshake-exception.js:56:3\n\nBun v1.4.0 (macOS arm64)", + "tail": ":events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n\nBun v1.4.0 (macOS arm64)\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-handshake-exception.js:56:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -133911,7 +133665,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ternalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"crypto\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-keyengine-unsupported.js:11:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"crypto\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-keyengine-unsupported.js:11:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -133998,7 +133752,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "y equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-max-send-fragment.js:68:10\n at emit (node:events:100:22)\n at handshake (node:net:483:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "),\n ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-max-send-fragment.js:68:10\n at emit (node:events:100:22)\n at handshake (node:net:483:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -134332,7 +134086,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "est-tls-ocsp-callback.js:90:15)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-tls-ocsp-callback.js:92:38)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)", + "tail": "xactly 0, actual 1.\n at (/test/parallel/test-tls-ocsp-callback.js:90:15)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\nMismatched function calls. Expected exactly 1, actual 0.\n at (/test/parallel/test-tls-ocsp-callback.js:92:38)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)", "retried": true }, "deno": { @@ -134390,7 +134144,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n\n[process 8619]: --- stdout ---\n\n[process 8619]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --use-system-ca --use-bundled-ca /test/fixtures/list-certs.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ": choose exactly one of --use-system-ca, --use-openssl-ca, or --use-bundled-ca\n\n[process 21208]: --- stdout ---\n\n[process 21208]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --use-system-ca --use-bundled-ca /test/fixtures/list-certs.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -134529,7 +134283,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-tls-over-http-tunnel.js:175:10)", + "tail": "pected: !0,\n22 | message,\n23 | operator: \"==\",\n24 | stackStartFn: fn\n25 | throw err.generatedMessage = generatedMessage, err;\n ^\nAssertionError: false == true\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-tls-over-http-tunnel.js:175:10)", "retried": true }, "deno": { @@ -134873,7 +134627,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "xpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-tls-reinitialize-listeners.js:13:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const {\n4 | RegExp,\n5 | RegExpPrototypeTest,\n6 | Symbol,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/net.js:7:5)\n at (/test/parallel/test-tls-reinitialize-listeners.js:13:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -135174,7 +134928,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-server-setkeycert.js:48:14\n at emit (node:events:100:22)\n at onClientHandshakeComplete (node:net:124:73)\n at handshake (node:net:696:30)\n\nBun v1.4.0 (macOS arm64)", + "tail": " be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-server-setkeycert.js:48:14\n at emit (node:events:100:22)\n at onClientHandshakeComplete (node:net:124:73)\n at handshake (node:net:696:30)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -135257,7 +135011,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at assert.rejects (node:assert:432:17)\n at testVersion (/test/parallel/test-tls-session-reuse-different-servername.js:79:18)\n at /test/parallel/test-tls-session-reuse-different-servername.js:120:9\n at processTicksAndRejections (native:7:39)", + "tail": " \"simple\",\n code: \"ERR_ASSERTION\"\n\n at innerFail (node:assert:48:27)\n at expectsError (node:assert:383:14)\n at assert.rejects (node:assert:432:17)\n at testVersion (/test/parallel/test-tls-session-reuse-different-servername.js:79:18)\n at /test/parallel/test-tls-session-reuse-different-servername.js:120:9\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -135375,7 +135129,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\nTypeError: undefined is not an object (evaluating 'err.cause.code')\n at (/test/parallel/test-tls-set-default-ca-certificates-append-fetch.mjs:40:28)\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "LE_TO_VERIFY_LEAF_SIGNATURE');\n ^\nTypeError: undefined is not an object (evaluating 'err.cause.code')\n at (/test/parallel/test-tls-set-default-ca-certificates-append-fetch.mjs:40:28)\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -135649,7 +135403,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "TypeError: unable to verify the first certificate\n path: \"https://localhost:60327/custom-ca-test\",\n errno: 0,\n code: \"UNABLE_TO_VERIFY_LEAF_SIGNATURE\"\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "TypeError: unable to verify the first certificate\n path: \"https://localhost:49880/custom-ca-test\",\n errno: 0,\n code: \"UNABLE_TO_VERIFY_LEAF_SIGNATURE\"\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -135734,7 +135488,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 2), 'success');\n56 | \n57 | server.setSecureContext(credentialOptions[1]);\n ^\nTypeError: server.setSecureContext is not a function. (In 'server.setSecureContext(credentialOptions[1])', 'server.setSecureContext' is undefined)\n at makeRemainingRequests (/test/parallel/test-tls-set-secure-context.js:57:12)", + "tail": " }\n54 | \n55 | assert.strictEqual(await makeRequest(port, 2), 'success');\n56 | \n57 | server.setSecureContext(credentialOptions[1]);\n ^\nTypeError: server.setSecureContext is not a function. (In 'server.setSecureContext(credentialOptions[1])', 'server.setSecureContext' is undefined)\n at makeRemainingRequests (/test/parallel/test-tls-set-secure-context.js:57:12)", "retried": true }, "deno": { @@ -135792,7 +135546,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " !== 'agent1'\n\n generatedMessage: false,\n actual: \"agent2\",\n expected: \"agent1\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-sni-case-insensitive.js:53:12\n at emit (node:events:100:22)\n at handshake (node:net:483:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "e wildcard: expected server cert CN=agent3, got agent2\n\n'agent2' !== 'agent3'\n\n generatedMessage: false,\n actual: \"agent2\",\n expected: \"agent3\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tls-sni-case-insensitive.js:53:12\n at emit (node:events:100:22)\n at handshake (node:net:483:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -136207,7 +135961,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n153 | process.on('exit', function() {\n154 | assert.strictEqual(ticketLog.length, serverLog.length);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-tls-ticket.js:154:10)", + "tail": "shake (node:net:483:22)\n149 | \n150 | connect();\n151 | }\n152 | \n153 | process.on('exit', function() {\n154 | assert.strictEqual(ticketLog.length, serverLog.length);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-tls-ticket.js:154:10)", "retried": true }, "deno": { @@ -136433,7 +136187,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "5 | JSONParse,\n26 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/tls/common.js:26:5)\n at (/test/parallel/test-tls-translate-peer-certificate.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "21 | \n22 | 'use strict';\n23 | \n24 | const {\n25 | JSONParse,\n26 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/tls/common.js:26:5)\n at (/test/parallel/test-tls-translate-peer-certificate.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -136653,7 +136407,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tls_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-wrap-no-abort.js:10:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"tls_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-tls-wrap-no-abort.js:10:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -136684,7 +136438,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | tsocket.resume();\n47 | }));\n48 | }));\n49 | \n50 | process.on('exit', () => {\n51 | assert.strictEqual(socket[kTimeout]._idleTimeout, -1);\n ^\nTypeError: null is not an object (evaluating 'socket[kTimeout]._idleTimeout')\n at (/test/parallel/test-tls-wrap-timeout.js:51:29)", + "tail": "ctMultiple (node:net:1848:15)\n at open (node:net:625:21)\n46 | tsocket.resume();\n47 | }));\n48 | }));\n49 | \n50 | process.on('exit', () => {\n51 | assert.strictEqual(socket[kTimeout]._idleTimeout, -1);\n ^\nTypeError: null is not an object (evaluating 'socket[kTimeout]._idleTimeout')\n at (/test/parallel/test-tls-wrap-timeout.js:51:29)", "retried": true }, "deno": { @@ -136798,7 +136552,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'object'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"object\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tojson-perf_hooks.js:13:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "peof jsonObject.nodeTiming, 'object');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'object'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"object\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-tojson-perf_hooks.js:13:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -137340,11 +137094,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ategoryEnabledBuffer;\n20 | \n21 | it('should track enabled/disabled categories', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-trace-events-get-category-enabled-buffer.js:21:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -137944,7 +137696,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode:tty:43:36)\n at (/test/parallel/test-ttywrap-invalid-fd.js:14:9)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-ttywrap-invalid-fd.js:13:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2147483647. Received -1\n code: \"ERR_OUT_OF_RANGE\"\n\n at WriteStream (internal:fs/streams:212:20)\n at new WriteStream (node:tty:43:36)\n at (/test/parallel/test-ttywrap-invalid-fd.js:14:9)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-ttywrap-invalid-fd.js:13:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138141,7 +137893,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-unicode-node-options.js:4:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | ArrayPrototypeSort,\n 6 | ObjectEntries,\n 7 | ObjectFromEntries,\n 8 | ObjectKeys,\n 9 | StringPrototypeReplace,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/options.js:10:5)\n at (/test/parallel/test-unicode-node-options.js:4:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138169,11 +137921,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "h2brj9c.org'],\n18 | ];\n19 | \n20 | test('domainToASCII and domainToUnicode', { skip: !hasIntl }, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-domain-ascii-unicode.js:20:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -138198,11 +137948,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "assert = require('node:assert');\n6 | const url = require('node:url');\n7 | \n8 | test('invalid arguments', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-fileurltopath.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -138227,11 +137975,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ire('node:url');\n7 | const { test } = require('node:test');\n8 | \n9 | test('format invalid input', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-format-invalid-input.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -138256,11 +138002,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "//user:pass@xn--lck1c3crb1723bpq4a.com/a?a=b#c');\n10 | \n11 | test('should format', { skip: !hasIntl }, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-format-whatwg.js:11:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -138285,11 +138029,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "est } = require('node:test');\n8 | \n9 | test('format slightly wonky content to a valid URL', { skip: !hasIntl }, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-format.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -138344,7 +138086,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "RL } = require('internal/url');\n 9 | const { test } = require('node:test');\n10 | \n11 | test('isURL', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-is-url-internal.js:11:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " function. (In 'isURL(new URL(\"https://www.nodejs.org\"))', 'isURL' is undefined)\n at (/test/parallel/test-url-is-url-internal.js:12:22)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) isURL [2.61ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [54.00ms]", "retried": true }, "deno": { @@ -138399,11 +138141,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "//0.0,1.1/'\n1006 | }\n1007 | };\n1008 | \n1009 | test('should parse and format', { skip: !hasIntl }, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-url-parse-format.js:1009:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -138431,7 +138171,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-url-parse-invalid-input.js:91:12\n at forEach (native:1:11)\n at /test/parallel/test-url-parse-invalid-input.js:90:11\n\nBun v1.4.0 (macOS arm64)", + "tail": "issing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_VALUE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-url-parse-invalid-input.js:91:12\n at forEach (native:1:11)\n at /test/parallel/test-url-parse-invalid-input.js:90:11\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138572,7 +138312,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n message: \"The \\\"url\\\" argument must be of type object. Received type string ('http://127.0.0.1')\",\n name: \"TypeError\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-url-urltooptions.js:40:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "n (TypeError).\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n message: \"The \\\"url\\\" argument must be of type object. Received type string ('http://127.0.0.1')\",\n name: \"TypeError\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-url-urltooptions.js:40:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138601,7 +138341,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-urlpattern-invalidthis.js:25:10)\n at forEach (1:11)\n at (/test/parallel/test-urlpattern-invalidthis.js:23:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "({}), {\n ^\nTypeError: The URLPattern.protocol getter can only be used on instances of URLPattern\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-urlpattern-invalidthis.js:25:10)\n at forEach (1:11)\n at (/test/parallel/test-urlpattern-invalidthis.js:23:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138632,7 +138372,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "hrows.\n9 | assert.throws(() => URLPattern(), {\n ^\nTypeError: Use `new URLPattern(...)` instead of `URLPattern(...)`\n code: \"ERR_ILLEGAL_CONSTRUCTOR\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-urlpattern-types.js:9:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "| \n8 | // Verifies that calling URLPattern with no new keyword throws.\n9 | assert.throws(() => URLPattern(), {\n ^\nTypeError: Use `new URLPattern(...)` instead of `URLPattern(...)`\n code: \"ERR_ILLEGAL_CONSTRUCTOR\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-urlpattern-types.js:9:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138725,7 +138465,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " true,\n actual: \"Promise was rejected with a falsy value\",\n expected: \"Promise was rejected with falsy value\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-util-callbackify.js:295:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " falsy value'\n ^\n\n generatedMessage: true,\n actual: \"Promise was rejected with a falsy value\",\n expected: \"Promise was rejected with falsy value\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-util-callbackify.js:295:12\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138810,7 +138550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-deprecate.js:10:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-deprecate.js:10:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138839,7 +138579,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "lit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-emit-experimental-warning.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-emit-experimental-warning.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138868,7 +138608,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ", '127.0.0.1', 8080);\n ^\nTypeError: util._exceptionWithHostPort is not a function. (In 'util._exceptionWithHostPort(ENOENT, \"connect\", \"127.0.0.1\", 8080)', 'util._exceptionWithHostPort' is undefined)\n at (/test/parallel/test-util-exception-with-host-port.js:13:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": "{\n13 | const e = util._exceptionWithHostPort(ENOENT, 'connect', '127.0.0.1', 8080);\n ^\nTypeError: util._exceptionWithHostPort is not a function. (In 'util._exceptionWithHostPort(ENOENT, \"connect\", \"127.0.0.1\", 8080)', 'util._exceptionWithHostPort' is undefined)\n at (/test/parallel/test-util-exception-with-host-port.js:13:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139248,11 +138988,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "rototype` for isDeepStrictEqual\n98 | {\n99 | test('util.isDeepStrictEqual with skipPrototype', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-util-isDeepStrictEqual.js:99:3)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -139280,7 +139018,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " single quotes \",\n SPACED_KEY: \"parsed\",\n SPACE_BEFORE_DOUBLE_QUOTES: \"space before double quotes\",\n TRIM_SPACE_FROM_UNQUOTED: \"some spaced out string\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-util-parse-env.js:62:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "e 'quotes' work inside double quotes\",\n SINGLE_QUOTES_SPACED: \" single quotes \",\n SPACED_KEY: \"parsed\",\n SPACE_BEFORE_DOUBLE_QUOTES: \"space before double quotes\",\n TRIM_SPACE_FROM_UNQUOTED: \"some spaced out string\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-util-parse-env.js:62:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139336,7 +139074,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctEqual(\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'exec'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"exec\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-util-promisify-custom-names.mjs:43:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "imeout).name,\n40 | 'setTimeout'\n41 | );\n42 | \n43 | assert.strictEqual(\n ^\nAssertionError: Expected values to be strictly equal:\n\n'' !== 'exec'\n\n generatedMessage: true,\n actual: \"\",\n expected: \"exec\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-util-promisify-custom-names.mjs:43:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139365,7 +139103,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-promisify.js:8:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-promisify.js:8:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139396,7 +139134,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nternalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"contextify\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-util-sigint-watchdog.js:12:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "alBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"contextify\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-util-sigint-watchdog.js:12:17)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [76.00ms]", "retried": true }, "deno": { @@ -139427,7 +139165,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-sleep.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-util-sleep.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139455,11 +139193,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "1B]8;;${ST}`, 'click'],\n21 | );\n22 | }\n23 | \n24 | test('util.stripVTControlCharacters', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-util-stripvtcontrolcharacters.js:24:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -139484,11 +139220,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "onst { WriteStream } = require('node:tty');\n8 | \n9 | describe('util.styleText hex color support', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-util-styletext-hex.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -139544,11 +139278,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "t');\n7 | \n8 | test('TextDecoder correctly decodes windows-1252 encoded data', { skip: !common.hasIntl }, () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-util-text-decoder.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -139634,7 +139366,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n77 | assert.strictEqual(\n78 | util.types.isNativeError(new errors.codes.ERR_IPC_CHANNEL_CLOSED()),\n ^\nTypeError: undefined is not an object (evaluating 'new errors.codes.ERR_IPC_CHANNEL_CLOSED')\n at (/test/parallel/test-util.js:78:41)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eError({ __proto__: Error.prototype }),\n75 | false\n76 | );\n77 | assert.strictEqual(\n78 | util.types.isNativeError(new errors.codes.ERR_IPC_CHANNEL_CLOSED()),\n ^\nTypeError: undefined is not an object (evaluating 'new errors.codes.ERR_IPC_CHANNEL_CLOSED')\n at (/test/parallel/test-util.js:78:41)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139663,7 +139395,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-uv-binding-constant.js:16:12\n at forEach (native:1:11)\n at /test/parallel/test-uv-binding-constant.js:13:6\n\nBun v1.4.0 (macOS arm64)", + "tail": " Missing expected exception (TypeError).\n generatedMessage: false,\n actual: undefined,\n expected: [class TypeError extends Error],\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-uv-binding-constant.js:16:12\n at forEach (native:1:11)\n at /test/parallel/test-uv-binding-constant.js:13:6\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139750,7 +139482,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al/errors');\n6 | \n7 | {\n8 | const exception = new UVException({ errno: 100, syscall: 'open' });\n ^\nTypeError: undefined is not a constructor (evaluating 'new UVException({ errno: 100, syscall: \"open\" })')\n at (/test/parallel/test-uv-unmapped-exception.js:8:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "const { UVException, UVExceptionWithHostPort } = require('internal/errors');\n6 | \n7 | {\n8 | const exception = new UVException({ errno: 100, syscall: 'open' });\n ^\nTypeError: undefined is not a constructor (evaluating 'new UVException({ errno: 100, syscall: \"open\" })')\n at (/test/parallel/test-uv-unmapped-exception.js:8:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139837,7 +139569,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " [\n+ 'MarkSweepCompact'\n- 'MinorMarkSweep'\n ]\n\n generatedMessage: true,\n actual: [ \"MarkSweepCompact\" ],\n expected: [ \"MinorMarkSweep\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-collect-gc-profile-minor-ms.js:13:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "Expected values to be strictly deep-equal:\n+ actual - expected\n\n [\n+ 'MarkSweepCompact'\n- 'MinorMarkSweep'\n ]\n\n generatedMessage: true,\n actual: [ \"MarkSweepCompact\" ],\n expected: [ \"MinorMarkSweep\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-collect-gc-profile-minor-ms.js:13:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139926,7 +139658,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "overageDirectory);\n ^\nENOENT: no such file or directory, scandir '/test/.tmp.17/cov_1'\n path: \"/test/.tmp.17/cov_1\",\n syscall: \"scandir\",\n errno: -2,\n code: \"ENOENT\"\n\n at getFixtureCoverage (/test/parallel/test-v8-coverage.js:196:28)\n at (/test/parallel/test-v8-coverage.js:30:27)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ageDirectory);\n ^\nENOENT: no such file or directory, scandir '/test/.tmp.4633/cov_1'\n path: \"/test/.tmp.4633/cov_1\",\n syscall: \"scandir\",\n errno: -2,\n code: \"ENOENT\"\n\n at getFixtureCoverage (/test/parallel/test-v8-coverage.js:196:28)\n at (/test/parallel/test-v8-coverage.js:30:27)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139957,7 +139689,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ire('assert');\n5 | const v8 = require('v8');\n6 | \n7 | {\n8 | const handle = v8.startCpuProfile();\n ^\nTypeError: v8.startCpuProfile is not a function. (In 'v8.startCpuProfile()', 'v8.startCpuProfile' is undefined)\n at (/test/parallel/test-v8-cpu-profile.js:8:21)\n\nBun v1.4.0 (macOS arm64)", + "tail": "3 | const common = require('../common');\n4 | const assert = require('assert');\n5 | const v8 = require('v8');\n6 | \n7 | {\n8 | const handle = v8.startCpuProfile();\n ^\nTypeError: v8.startCpuProfile is not a function. (In 'v8.startCpuProfile()', 'v8.startCpuProfile' is undefined)\n at (/test/parallel/test-v8-cpu-profile.js:8:21)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -140156,7 +139888,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rofile' is undefined)\n at (/test/parallel/test-v8-heap-profile.js:7:24)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-v8-heap-profile.js:7:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n ^\nTypeError: v8.startHeapProfile is not a function. (In 'v8.startHeapProfile(\"bad\")', 'v8.startHeapProfile' is undefined)\n at (/test/parallel/test-v8-heap-profile.js:7:24)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-v8-heap-profile.js:7:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -140189,7 +139921,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s' is undefined)\n at (/test/parallel/test-v8-query-objects.js:21:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-v8-query-objects.js:21:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n ^\nTypeError: v8.queryObjects is not a function. (In 'v8.queryObjects(invalid)', 'v8.queryObjects' is undefined)\n at (/test/parallel/test-v8-query-objects.js:21:28)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-v8-query-objects.js:21:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -140334,7 +140066,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "trictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-stop-coverage.js:31:10\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n30 | console.log(output.stderr.toString());\n31 | assert.strictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-stop-coverage.js:31:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -140394,7 +140126,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Equal(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-take-coverage-noop.js:29:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " | console.log(output.stderr.toString());\n29 | assert.strictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-take-coverage-noop.js:29:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -140425,7 +140157,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "trictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-take-coverage.js:29:10\n\nBun v1.4.0 (macOS arm64)", + "tail": ");\n28 | console.log(output.stderr.toString());\n29 | assert.strictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-v8-take-coverage.js:29:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -140881,7 +140613,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 73009]: --- stderr ---\nerror: No such built-in module: node:vfs\n\nBun v1.4.0 (macOS arm64)\n\n[process 73009]: --- stdout ---\n\n[process 73009]: status = 1, signal = null\nerror: - stderr did not match /ERR_UNKNOWN_BUILTIN_MODULE/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun -e require(\\\"node:vfs\\\")\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "[process 21999]: --- stderr ---\nerror: No such built-in module: node:vfs\n\nBun v1.4.0 (macOS arm64)\n\n[process 21999]: --- stdout ---\n\n[process 21999]: status = 1, signal = null\nerror: - stderr did not match /ERR_UNKNOWN_BUILTIN_MODULE/\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun -e require(\\\"node:vfs\\\")\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -142234,7 +141966,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "0 | SymbolDispose,\n11 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/file_handle.js:11:5)\n at (/test/parallel/test-vfs-memory-file-handle.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "6 | MathMin,\n 7 | Number,\n 8 | Symbol,\n 9 | SymbolAsyncDispose,\n10 | SymbolDispose,\n11 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/file_handle.js:11:5)\n at (/test/parallel/test-vfs-memory-file-handle.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -143026,7 +142758,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "plit,\n6 | StringPrototypeStartsWith,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/router.js:7:5)\n at (/test/parallel/test-vfs-router.js:12:45)\n\nBun v1.4.0 (macOS arm64)", + "tail": "2 | \n3 | const {\n4 | ArrayPrototypeJoin,\n5 | StringPrototypeSplit,\n6 | StringPrototypeStartsWith,\n7 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/router.js:7:5)\n at (/test/parallel/test-vfs-router.js:12:45)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -143092,7 +142824,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " MathCeil,\n 9 | MathFloor,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/stats.js:10:5)\n at (/test/parallel/test-vfs-stats-helpers.js:15:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "5 | BigInt64Array,\n 6 | DateNow,\n 7 | Float64Array,\n 8 | MathCeil,\n 9 | MathFloor,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/stats.js:10:5)\n at (/test/parallel/test-vfs-stats-helpers.js:15:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -143422,7 +143154,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | SymbolDispose,\n11 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/file_handle.js:11:5)\n at (/test/parallel/test-vfs-virtual-file-handle.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "6 | MathMin,\n 7 | Number,\n 8 | Symbol,\n 9 | SymbolAsyncDispose,\n10 | SymbolDispose,\n11 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/vfs/file_handle.js:11:5)\n at (/test/parallel/test-vfs-virtual-file-handle.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -143810,7 +143542,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "N\"\n\n at /test/parallel/test-vm-api-handles-getter-errors.js:33:5\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "perator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-api-handles-getter-errors.js:33:5\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -143866,7 +143598,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":7'\n }\n\n generatedMessage: true,\n expected: {\n message: \"Sample Error\",\n stack: \"Error: Sample Error\\n at :1:7\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-basic.js:280:10\n\nerror: Sample Error\n at file:///:2:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "///:2:16)'\n- stack: 'Error: Sample Error\\n at :1:7'\n }\n\n generatedMessage: true,\n expected: {\n message: \"Sample Error\",\n stack: \"Error: Sample Error\\n at :1:7\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-basic.js:280:10\n\nerror: Sample Error\n at file:///:2:16\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -144557,7 +144289,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": true,\n expected: /Cannot assign to read only property 'x'/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-global-non-writable-properties.js:13:8\n\nTypeError: Attempted to assign to readonly property.\n at evalmachine.:1:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "r: Attempted to assign to readonly property.'\n\n generatedMessage: true,\n expected: /Cannot assign to read only property 'x'/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-global-non-writable-properties.js:13:8\n\nTypeError: Attempted to assign to readonly property.\n at evalmachine.:1:16\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -144615,7 +144347,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n expected: /TypeError: Cannot redefine property: f/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-global-property-interceptors.js:126:8\n\nTypeError: Attempting to change value of a readonly property.\n at defineProperty (unknown:1:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " change value of a readonly property.'\n\n generatedMessage: true,\n expected: /TypeError: Cannot redefine property: f/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-global-property-interceptors.js:126:8\n\nTypeError: Attempting to change value of a readonly property.\n at defineProperty (unknown:1:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -144704,7 +144436,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "hrowing, 50);\n114 | \n115 | assert.throws(\n116 | () => (window.globalProxy.nonWritableProp = 151),\n117 | new TypeError('Cannot redefine property: nonWritableProp')\n ^\nTypeError: Cannot redefine property: nonWritableProp\n at (/test/parallel/test-vm-global-setter.js:117:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "112 | );\n113 | assert.strictEqual(window.globalProxy.getSetPropThrowing, 50);\n114 | \n115 | assert.throws(\n116 | () => (window.globalProxy.nonWritableProp = 151),\n117 | new TypeError('Cannot redefine property: nonWritableProp')\n ^\nTypeError: Cannot redefine property: nonWritableProp\n at (/test/parallel/test-vm-global-setter.js:117:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -145259,11 +144991,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "'vm');\n10 | const test = require('node:test');\n11 | \n12 | test('module is not instantiated yet', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-hasasyncgraph.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -145290,11 +145020,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "e } = require('vm');\n10 | const test = require('node:test');\n11 | \n12 | test('simple module', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-hastoplevelawait.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -145350,11 +145078,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "Module } = require('vm');\n10 | const test = require('node:test');\n11 | \n12 | test('simple module', () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-instantiate.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -145433,11 +145159,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "equire('node:test');\n11 | \n12 | test('basic circular linking', async function circular() {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-linkmodulerequests-circular.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -145462,11 +145186,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " | const test = require('node:test');\n11 | \n12 | test('deep linking', async function depth() {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-linkmodulerequests-deep.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -145494,7 +145216,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ";\n10 | const test = require('node:test');\n11 | \n12 | test('simple graph', async function simple() {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-linkmodulerequests.js:12:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "s (node:assert:428:33)\n at (/test/parallel/test-vm-module-linkmodulerequests.js:74:10)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) instantiate error should hint about module identifier [2.78ms]\n\n 2 pass\n 2 fail\nRan 4 tests across 1 file. [68.00ms]", "retried": true }, "deno": { @@ -145523,7 +145245,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "'node:test');\n11 | \n12 | test('SourceTextModule.moduleRequests should return module requests', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-vm-module-modulerequests.js:12:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-module-modulerequests.js:111:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) SourceTextModule.moduleRequests items are frozen [0.98ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [64.00ms]", "retried": true }, "deno": { @@ -146048,7 +145770,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e);\n ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-proxy-sandbox-property-query.js:59:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "e,\n58 | });\n59 | assert.strictEqual(result.ownNamesIncludes, true);\n ^\nAssertionError: Expected values to be strictly equal:\n\nfalse !== true\n\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-proxy-sandbox-property-query.js:59:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -146328,7 +146050,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " generatedMessage: true,\n expected: /Cannot assign to read only property 'x'/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-strict-assign.js:18:8\n\nTypeError: Attempted to assign to readonly property.\n at evalmachine.:1:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "Input:\n\n'TypeError: Attempted to assign to readonly property.'\n\n generatedMessage: true,\n expected: /Cannot assign to read only property 'x'/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-strict-assign.js:18:8\n\nTypeError: Attempted to assign to readonly property.\n at evalmachine.:1:16\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -146438,7 +146160,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ion in prefix operation/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-syntax-error-stderr.js:24:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "0 (macOS arm64)\\n\",\n expected: /Invalid left-hand side expression in prefix operation/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-vm-syntax-error-stderr.js:24:10\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -146606,7 +146328,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (/test/parallel/test-warn-sigprof.js:20:8)\n\n--------------------- Bun Inspector ---------------------\nListening:\n ws://localhost:61038/2f6604a6-9934-46a1-ae76-389caf0f21fc\nInspect in browser:\n https://debug.bun.sh/#localhost:61038/2f6604a6-9934-46a1-ae76-389caf0f21fc\n--------------------- Bun Inspector ---------------------", + "tail": "arning (/test/common/index.js:723:31)\n at (/test/parallel/test-warn-sigprof.js:20:8)\n\n--------------------- Bun Inspector ---------------------\nListening:\n ws://localhost:50009/f4051416-c3a6-4fa9-b9e0-98fec8669ac1\nInspect in browser:\n https://debug.bun.sh/#localhost:50009/f4051416-c3a6-4fa9-b9e0-98fec8669ac1\n--------------------- Bun Inspector ---------------------", "retried": true }, "deno": { @@ -146718,7 +146440,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "7 | SafeMap,\n 8 | SafeSet,\n 9 | SafeWeakMap,\n10 | StringPrototypeEndsWith,\n11 | StringPrototypeStartsWith,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/watch_mode/files_watcher.js:12:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": "s\n-------------------------------\n 7 | SafeMap,\n 8 | SafeSet,\n 9 | SafeWeakMap,\n10 | StringPrototypeEndsWith,\n11 | StringPrototypeStartsWith,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/watch_mode/files_watcher.js:12:5)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [71.00ms]", "retried": true }, "deno": { @@ -146749,7 +146471,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ypeStartsWith,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/watch_mode/files_watcher.js:12:5)\n at /test/parallel/test-watch-mode-files_watcher-clear.mjs:49:28\n\nBun v1.4.0 (macOS arm64)", + "tail": "7 | SafeMap,\n 8 | SafeSet,\n 9 | SafeWeakMap,\n10 | StringPrototypeEndsWith,\n11 | StringPrototypeStartsWith,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/watch_mode/files_watcher.js:12:5)\n at /test/parallel/test-watch-mode-files_watcher-clear.mjs:49:28\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -146780,7 +146502,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "7 | SafeMap,\n 8 | SafeSet,\n 9 | SafeWeakMap,\n10 | StringPrototypeEndsWith,\n11 | StringPrototypeStartsWith,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/watch_mode/files_watcher.js:12:5)\n\nBun v1.4.0 (macOS arm64)", + "tail": "s\n-------------------------------\n 7 | SafeMap,\n 8 | SafeSet,\n 9 | SafeWeakMap,\n10 | StringPrototypeEndsWith,\n11 | StringPrototypeStartsWith,\n12 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/watch_mode/files_watcher.js:12:5)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [75.00ms]", "retried": true }, "deno": { @@ -146925,7 +146647,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nst { Worker } = require('worker_threads');\n7 | \n8 | describe('Web Locks - query missing WPT tests', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-web-locks-query.js:8:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "er;\n48 | if (args.length > 0)\n49 | er = args[0];\n50 | throw er;\n ^\nTypeError: undefined is not an object (evaluating 'navigator.locks.request')\n at emitError (node:events:50:13)\n at #onError (node:worker_threads:725:14)\n(fail) Web Locks - query missing WPT tests > should observe a deadlock scenario [15.19ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [105.00ms]", "retried": true }, "deno": { @@ -146956,7 +146678,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " AsyncLocalStorage } = require('node:async_hooks');\n 9 | \n10 | describe('Web Locks with worker threads', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-web-locks.js:10:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " at (/test/parallel/test-web-locks.js:195:21)\n at run (node:async_hooks:99:29)\n at (node:test:1445:26)\n at executeTestNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) Web Locks with worker threads > should clean up when worker is terminated with a pending lock [0.20ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [118.00ms]", "retried": true }, "deno": { @@ -146985,7 +146707,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "3 | \n14 | test('ReadableStreamBYOBReader.read() rejects SAB-backed Uint8Array', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-webapi-sharedarraybuffer-rejection.js:14:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "edArrayPrototypeGetBuffer,\n30 | TypedArrayPrototypeGetSymbolToStringTag,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webidl.js:31:5)\n at (/test/parallel/test-webapi-sharedarraybuffer-rejection.js:103:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [57.00ms]", "retried": true }, "deno": { @@ -147074,7 +146796,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n12 | Uint8Array,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/keys.js:13:5)\n at (/test/parallel/test-webcrypto-crypto-job-mode.js:14:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | SafeSet,\n 9 | StringPrototypeIncludes,\n10 | StringPrototypeStartsWith,\n11 | SymbolToStringTag,\n12 | Uint8Array,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/keys.js:13:5)\n at (/test/parallel/test-webcrypto-crypto-job-mode.js:14:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -147107,7 +146829,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected: CryptoKey {\n type: undefined,\n extractable: undefined,\n algorithm: undefined,\n usages: undefined,\n [Symbol(nodejs.util.inspect.custom)]: [Function: anonymous],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webcrypto-cryptokey-brand-check.js:54:10", + "tail": "atedMessage: true,\n actual: [Object: null prototype] {},\n expected: CryptoKey {\n type: undefined,\n extractable: undefined,\n algorithm: undefined,\n usages: undefined,\n [Symbol(nodejs.util.inspect.custom)]: [Function: anonymous],\n},\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webcrypto-cryptokey-brand-check.js:54:10", "retried": true }, "deno": { @@ -147529,7 +147251,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n VALIDATION_ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-webcrypto-digest-turboshake-rfc.js:378", + "tail": "IFICATION_ERR: 13,\n NAMESPACE_ERR: 14,\n INVALID_ACCESS_ERR: 15,\n VALIDATION_ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-webcrypto-digest-turboshake-rfc.js:378", "retried": true }, "deno": { @@ -147562,7 +147284,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-webcrypto-digest-turboshake.js:120:16", + "tail": "Error\",\n message: \"Invalid TurboShakeParams outputLength\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-webcrypto-digest-turboshake.js:120:16", "retried": true }, "deno": { @@ -147626,7 +147348,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "2 | Uint8Array,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/keys.js:13:5)\n at (/test/parallel/test-webcrypto-encap-decap-ml-kem.js:16:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "8 | SafeSet,\n 9 | StringPrototypeIncludes,\n10 | StringPrototypeStartsWith,\n11 | SymbolToStringTag,\n12 | Uint8Array,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/keys.js:13:5)\n at (/test/parallel/test-webcrypto-encap-decap-ml-kem.js:16:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -147938,7 +147660,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at test (/test/parallel/test-webcrypto-export-import.js:69:18)", + "tail": ": {\n name: \"DataError\",\n message: \"Invalid key length\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at test (/test/parallel/test-webcrypto-export-import.js:69:18)", "retried": true }, "deno": { @@ -147971,7 +147693,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at /test/parallel/test-webcrypto-get-public-key.mjs:11:34\n\nBun v1.4.0 (macOS arm64)", + "tail": "pedArrayPrototypeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at /test/parallel/test-webcrypto-get-public-key.mjs:11:34\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148093,7 +147815,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "typeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-webcrypto-keygen.js:19:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rrayPrototypeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-webcrypto-keygen.js:19:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148157,7 +147879,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at /test/parallel/test-webcrypto-promise-prototype-pollution.mjs:26:34\n\nBun v1.4.0 (macOS arm64)", + "tail": "typeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at /test/parallel/test-webcrypto-promise-prototype-pollution.mjs:26:34\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148504,7 +148226,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "totypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-webcrypto-util.js:13:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "dArrayPrototypeGetBuffer,\n25 | TypedArrayPrototypeGetByteLength,\n26 | TypedArrayPrototypeGetByteOffset,\n27 | TypedArrayPrototypeSlice,\n28 | Uint8Array,\n29 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/util.js:29:5)\n at (/test/parallel/test-webcrypto-util.js:13:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148537,7 +148259,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "werCase,\n12 | Uint8Array,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/webidl.js:13:5)\n at (/test/parallel/test-webcrypto-webidl.js:10:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ObjectPrototypeHasOwnProperty,\n 9 | StringPrototypeCharCodeAt,\n10 | StringPrototypeStartsWith,\n11 | StringPrototypeToLowerCase,\n12 | Uint8Array,\n13 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/webidl.js:13:5)\n at (/test/parallel/test-webcrypto-webidl.js:10:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148570,7 +148292,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-webcrypto-wrap-unwrap.js:510:16", + "tail": "nction: toString],\n},\n expected: {\n name: \"NotSupportedError\",\n},\n operator: \"rejects\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at compareExceptionKey (node:assert:231:35)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at /test/parallel/test-webcrypto-wrap-unwrap.js:510:16", "retried": true }, "deno": { @@ -148603,7 +148325,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "or: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'function'\n- 'undefined'\n\n generatedMessage: true,\n actual: \"function\",\n expected: \"undefined\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-websocket-disabled.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "tEqual(typeof WebSocket, 'undefined');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'function'\n- 'undefined'\n\n generatedMessage: true,\n actual: \"function\",\n expected: \"undefined\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-websocket-disabled.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148661,7 +148383,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'object'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"object\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webstorage-without-sqlite.js:7:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "asSQLite ? 'object' : 'undefined');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'undefined'\n- 'object'\n\n generatedMessage: true,\n actual: \"undefined\",\n expected: \"object\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webstorage-without-sqlite.js:7:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148690,7 +148412,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "th, `${++cnt}.localstorage`);\n16 | }\n17 | \n18 | test('Storage instances cannot be created in userland', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-webstorage.js:18:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webstorage.js:146:5\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) disabled with --no-webstorage [19.10ms]", "retried": true }, "deno": { @@ -148783,7 +148505,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s = new WritableStream();\n14 | const ac = new AbortController();\n15 | const reason = new AbortError(message);\n ^\nTypeError: undefined is not a constructor (evaluating 'new AbortError(message)')\n at (/test/parallel/test-webstream-readablestream-pipeto.js:15:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": "'abc']) {\n12 | const rs = new ReadableStream();\n13 | const ws = new WritableStream();\n14 | const ac = new AbortController();\n15 | const reason = new AbortError(message);\n ^\nTypeError: undefined is not a constructor (evaluating 'new AbortError(message)')\n at (/test/parallel/test-webstream-readablestream-pipeto.js:15:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148841,7 +148563,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 'node:test';\n3 | import assert from 'node:assert';\n4 | \n5 | test('do not leak promises', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at /test/parallel/test-webstream-structured-clone-no-leftovers.mjs:5:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "MATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-webstream-structured-clone-no-leftovers.mjs:10\n(fail) do not leak promises [3.92ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [73.00ms]", "retried": true }, "deno": { @@ -148897,7 +148619,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "y,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-webstreams-adapters-sync-write-error.js:9:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-webstreams-adapters-sync-write-error.js:9:3)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [65.00ms]", "retried": true }, "deno": { @@ -148923,11 +148645,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "rayBuffer, SharedArrayBuffer];\n10 | \n11 | suite('underlying Writable', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-webstreams-adapters-writable-buffer-sources.js:11:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -148957,7 +148677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-webstreams-clone-unref.js:7\n\nBun v1.4.0 (macOS arm64)", + "tail": "13,\n NAMESPACE_ERR: 14,\n INVALID_ACCESS_ERR: 15,\n VALIDATION_ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-webstreams-clone-unref.js:7\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149012,11 +148732,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "33 | test(`CompressionStream rejects bad chunk (${name}) for ${format}`, async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-webstreams-compression-bad-chunks.js:33:5)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -149041,11 +148759,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "0,\n11 | ]);\n12 | \n13 | test('DecompressionStream accepts ArrayBuffer chunks', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-webstreams-compression-buffer-source.js:13:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -149072,11 +148788,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "\n23 | test(`DecompressionStream rejects trailing junk for ${format}`, async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-webstreams-decompression-reject-trailing.js:23:3)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -149189,7 +148903,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/writablestream.js:15:5)\n at (/test/parallel/test-webstreams-pipeto-write-request.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | PromiseReject,\n11 | PromiseResolve,\n12 | PromiseWithResolvers,\n13 | Symbol,\n14 | SymbolToStringTag,\n15 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/writablestream.js:15:5)\n at (/test/parallel/test-webstreams-pipeto-write-request.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149303,7 +149017,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ymbolToStringTag,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/encoding.js:16:5)\n at (/test/parallel/test-whatwg-encoding-custom-internals.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "11 | ObjectValues,\n12 | SafeMap,\n13 | StringPrototypeSlice,\n14 | Symbol,\n15 | SymbolToStringTag,\n16 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/encoding.js:16:5)\n at (/test/parallel/test-whatwg-encoding-custom-internals.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149334,7 +149048,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-whatwg-encoding-custom-interop.js:11:30)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-whatwg-encoding-custom-interop.js:11:30)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149529,7 +149243,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "8 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-whatwg-encoding-custom-textdecoder.js:10:30)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/parallel/test-whatwg-encoding-custom-textdecoder.js:10:30)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149557,11 +149271,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "'Legacy single-byte encodings');\n15 | \n16 | describe('single-byte encodings are supersets of ascii', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-whatwg-encoding-singlebyte.mjs:16:1\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -149753,7 +149465,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | Uint8Array,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:24:5)\n at (/test/parallel/test-whatwg-readablebytestream.js:16:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ymbol,\n20 | TypedArrayPrototypeGetBuffer,\n21 | TypedArrayPrototypeGetByteLength,\n22 | TypedArrayPrototypeGetByteOffset,\n23 | Uint8Array,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:24:5)\n at (/test/parallel/test-whatwg-readablebytestream.js:16:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149811,7 +149523,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "int8Array,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:30:5)\n at (/test/parallel/test-whatwg-readablestream.js:36:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "25 | SymbolDispose,\n26 | SymbolIterator,\n27 | SymbolToStringTag,\n28 | TypedArrayPrototypeGetLength,\n29 | Uint8Array,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:30:5)\n at (/test/parallel/test-whatwg-readablestream.js:36:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149868,11 +149580,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "rite racing with reader.cancel() should not throw an internal TypeError', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-whatwg-transformstream-cancel-write-race.js:11:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -149900,7 +149610,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "PrototypeSplit,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/worker/js_transferable.js:5:5)\n at (/test/parallel/test-whatwg-transformstream.js:19:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | const {\n3 | Error,\n4 | StringPrototypeSplit,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/worker/js_transferable.js:5:5)\n at (/test/parallel/test-whatwg-transformstream.js:19:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149931,7 +149641,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "y which function we want to optimize. This is why\n33 | // the next line does not optimize \"testFastPaths\" but \"URL.canParse\"\n34 | eval('%PrepareFunctionForOptimization(URL.canParse)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-whatwg-url-canparse.js:34:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "contains other javascript functions,\n32 | // we need to specify which function we want to optimize. This is why\n33 | // the next line does not optimize \"testFastPaths\" but \"URL.canParse\"\n34 | eval('%PrepareFunctionForOptimization(URL.canParse)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/parallel/test-whatwg-url-canparse.js:34:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150095,7 +149805,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "oString\", \"href\", \"origin\", \"protocol\", \"username\", \"password\", \"host\", \"hostname\", \"port\", \"pathname\",\n \"search\", \"searchParams\", \"hash\", \"toJSON\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-whatwg-url-custom-properties.js:27:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ch\", \"searchParams\", \"toJSON\", \"toString\"\n],\n expected: [\n \"toString\", \"href\", \"origin\", \"protocol\", \"username\", \"password\", \"host\", \"hostname\", \"port\", \"pathname\",\n \"search\", \"searchParams\", \"hash\", \"toJSON\"\n],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-whatwg-url-custom-properties.js:27:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150273,7 +149983,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "> (/test/parallel/test-whatwg-url-custom-searchparams-get.js:11:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-get.js:10:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: Can only call URLSearchParams.get on instances of URLSearchParams\n code: \"ERR_INVALID_THIS\"\n\n at (/test/parallel/test-whatwg-url-custom-searchparams-get.js:11:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-get.js:10:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150331,7 +150041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "> (/test/parallel/test-whatwg-url-custom-searchparams-has.js:11:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-has.js:10:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: Can only call URLSearchParams.has on instances of URLSearchParams\n code: \"ERR_INVALID_THIS\"\n\n at (/test/parallel/test-whatwg-url-custom-searchparams-has.js:11:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-has.js:10:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150360,7 +150070,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 'b' }\"\n\n generatedMessage: true,\n actual: \"Object [URLSearchParams Iterator] {}\",\n expected: \"URLSearchParams Iterator { 'a', 'b', 'b' }\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-whatwg-url-custom-searchparams-inspect.js:17:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "archParams Iterator] {}'\n- \"URLSearchParams Iterator { 'a', 'b', 'b' }\"\n\n generatedMessage: true,\n actual: \"Object [URLSearchParams Iterator] {}\",\n expected: \"URLSearchParams Iterator { 'a', 'b', 'b' }\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-whatwg-url-custom-searchparams-inspect.js:17:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150389,7 +150099,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (/test/parallel/test-whatwg-url-custom-searchparams-keys.js:31:13)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-keys.js:30:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ined);\n ^\nTypeError: Cannot call next() on a non-Iterator object\n code: \"ERR_INVALID_THIS\"\n\n at (/test/parallel/test-whatwg-url-custom-searchparams-keys.js:31:13)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-keys.js:30:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150418,7 +150128,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "> (/test/parallel/test-whatwg-url-custom-searchparams-set.js:11:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-set.js:10:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: Can only call URLSearchParams.set on instances of URLSearchParams\n code: \"ERR_INVALID_THIS\"\n\n at (/test/parallel/test-whatwg-url-custom-searchparams-set.js:11:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-set.js:10:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150613,7 +150323,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-invalidthis.js:12:10)\n at forEach (1:11)\n at (/test/parallel/test-whatwg-url-invalidthis.js:11:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": ", {}), {\n ^\nTypeError: Can only call URL.toString on instances of URL\n code: \"ERR_INVALID_THIS\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-invalidthis.js:12:10)\n at forEach (1:11)\n at (/test/parallel/test-whatwg-url-invalidthis.js:11:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150700,7 +150410,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-streambase.js:14:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "pedArrayPrototypeGetBuffer,\n16 | TypedArrayPrototypeGetByteLength,\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-streambase.js:14:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150764,7 +150474,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "imordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-readablewritablepair.js:9:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "otypeGetBuffer,\n16 | TypedArrayPrototypeGetByteLength,\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-readablewritablepair.js:9:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150797,7 +150507,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-streamduplex.js:13:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rayPrototypeGetBuffer,\n16 | TypedArrayPrototypeGetByteLength,\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-streamduplex.js:13:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150828,7 +150538,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-streamreadable.js:20:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "yPrototypeGetBuffer,\n16 | TypedArrayPrototypeGetByteLength,\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-streamreadable.js:20:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150859,7 +150569,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-streamwritable.js:13:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "yPrototypeGetBuffer,\n16 | TypedArrayPrototypeGetByteLength,\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-streamwritable.js:13:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150890,7 +150600,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-writablestream.js:10:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "yPrototypeGetBuffer,\n16 | TypedArrayPrototypeGetByteLength,\n17 | TypedArrayPrototypeGetByteOffset,\n18 | Uint8Array,\n19 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/adapters.js:19:5)\n at (/test/parallel/test-whatwg-webstreams-adapters-to-writablestream.js:10:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150923,7 +150633,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n55 | assert.throws(\n ^\nTypeError: Value of \"this\" must be of type CompressionStream\n code: \"ERR_INVALID_THIS\"\n\n at get (1:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-webstreams-compression.js:55:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | code: 'ERR_INVALID_ARG_VALUE',\n52 | });\n53 | });\n54 | \n55 | assert.throws(\n ^\nTypeError: Value of \"this\" must be of type CompressionStream\n code: \"ERR_INVALID_THIS\"\n\n at get (1:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-webstreams-compression.js:55:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150954,7 +150664,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| Uint8Array,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:24:5)\n at (/test/parallel/test-whatwg-webstreams-coverage.js:16:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "mbol,\n20 | TypedArrayPrototypeGetBuffer,\n21 | TypedArrayPrototypeGetByteLength,\n22 | TypedArrayPrototypeGetByteOffset,\n23 | Uint8Array,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:24:5)\n at (/test/parallel/test-whatwg-webstreams-coverage.js:16:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150985,7 +150695,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/parallel/test-whatwg-webstreams-encoding.js:49:12\n at forEach (native:1:11)\n at /test/parallel/test-whatwg-webstreams-encoding.js:48:62\n\nBun v1.4.0 (macOS arm64)", + "tail": "y call TextDecoderStream.encoding on instances of TextDecoderStream\n code: \"ERR_INVALID_THIS\"\n\n at get (native:1:11)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at /test/parallel/test-whatwg-webstreams-encoding.js:49:12\n at forEach (native:1:11)\n at /test/parallel/test-whatwg-webstreams-encoding.js:48:62\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151016,7 +150726,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rray,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:30:5)\n at (/test/parallel/test-whatwg-webstreams-transfer.js:18:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ringTag,\n28 | TypedArrayPrototypeGetLength,\n29 | Uint8Array,\n30 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:30:5)\n at (/test/parallel/test-whatwg-webstreams-transfer.js:18:3)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [65.00ms]", "retried": true }, "deno": { @@ -151075,11 +150785,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "m/nodejs/node/issues/57272\n8 | \n9 | test('should throw error when writing after close', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-whatwg-writablestream-close.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -151107,7 +150815,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n23 | Uint8Array,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:24:5)\n at (/test/parallel/test-whatwg-writablestream.js:17:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": " Symbol,\n20 | TypedArrayPrototypeGetBuffer,\n21 | TypedArrayPrototypeGetByteLength,\n22 | TypedArrayPrototypeGetByteOffset,\n23 | Uint8Array,\n24 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:24:5)\n at (/test/parallel/test-whatwg-writablestream.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151245,11 +150953,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "} = require('node:test');\n7 | \n8 | describe('Allocating uninitialized ArrayBuffers ...', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/parallel/test-worker-arraybuffer-zerofill.js:8:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -151306,7 +151012,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " c3');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'from c1'\n- 'from c3'\n ^\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-worker-broadcastchannel-wpt.js:62:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ndows) {\n62 | assert.strictEqual(events[0].data, 'from c3');\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'from c1'\n- 'from c3'\n ^\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-worker-broadcastchannel-wpt.js:62:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151337,7 +151043,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ing\n at (/test/parallel/test-worker-broadcastchannel.js:12:21)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-worker-broadcastchannel.js:12:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "sert.throws(() => new BroadcastChannel(Symbol('test')), {\n ^\nTypeError: Cannot convert a symbol to a string\n at (/test/parallel/test-worker-broadcastchannel.js:12:21)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-worker-broadcastchannel.js:12:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151478,7 +151184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: /ERR_WORKER_INVALID_EXEC_ARGV/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-cli-options.js:29:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "s execArgv (V8 options) explicitly will throw an error\n29 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: /ERR_WORKER_INVALID_EXEC_ARGV/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-cli-options.js:29:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151621,7 +151327,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"process_methods\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-worker-cwd-race-condition.js:16:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": " }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"process_methods\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/parallel/test-worker-cwd-race-condition.js:16:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151795,7 +151501,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ypeFill,\n27 | Uint32Array,\n28 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/worker.js:28:5)\n at (/test/parallel/test-worker-environmentdata.js:12:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "23 | Symbol,\n24 | SymbolAsyncDispose,\n25 | SymbolFor,\n26 | TypedArrayPrototypeFill,\n27 | Uint32Array,\n28 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/worker.js:28:5)\n at (/test/parallel/test-worker-environmentdata.js:12:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151826,7 +151532,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n+ }\n- Symbol(a)\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-worker-error-primitive.js:20:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n+ [cause]: ErrorEvent {\n+ isTrusted: [Getter: true]\n+ }\n+ }\n- Symbol(a)\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-worker-error-primitive.js:20:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151857,7 +151563,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "efined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-worker-error-stack-getter-throws.js:19:10)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " '\\n' +\n+ ' at #onError (node:worker_threads:714:20)'\n- undefined\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-worker-error-stack-getter-throws.js:19:10)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151965,9 +151671,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "};\n23 | \n24 | test('Worker eval module typescript without input-type', onlyWithAmaro, async () => {\n ^\nerror: Cannot use test.skip outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1646:15)\n at (/test/parallel/test-worker-eval-typescript.js:24:1)\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -152052,7 +151758,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tch (node:assert:516:16)\n at (/test/parallel/test-worker-execargv.js:17:12)\n at emit (node:events:121:23)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at onMessage (internal:worker/stdio:13:20)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ted)\\n'\n\n at internalMatch (node:assert:512:55)\n at match (node:assert:516:16)\n at (/test/parallel/test-worker-execargv.js:17:12)\n at emit (node:events:121:23)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at onMessage (internal:worker/stdio:13:20)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -152419,7 +152125,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "actual: 134,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-init-failure.js:67:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "to be strictly equal:\n\n134 !== 0\n\n generatedMessage: true,\n actual: 134,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-init-failure.js:67:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -152448,7 +152154,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "14 | return new URL(`data:text/javascript,${encodeURIComponent(script)}`);\n15 | }\n16 | \n17 | describe('Worker threads should not be able to access internal modules', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/parallel/test-worker-internal-modules.mjs:17:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "list';\n ^\nerror: Could not resolve: \"node:internal/freelist\". Maybe you need to \"bun install\"?\n at data:text/javascript,%0Aimport%20'node%3Ainternal%2Ffreelist'%3B%0A:2:8\n at #onError (node:worker_threads:714:20)\n(fail) Worker threads should not be able to access internal modules > worker instantiated with data: URL [26.77ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [157.00ms]", "retried": true }, "deno": { @@ -152533,7 +152239,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode:assert:94:10)\n at (/test/parallel/test-worker-memory.js:46:14)\n at (/test/parallel/test-worker-memory.js:31:5)\n at emit (node:events:100:22)\n at #onClose (node:worker_threads:709:44)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eapUsed: 2138992,\n external: 850896,\n arrayBuffers: 0\n }\n]\n at innerOk (internal:assert/utils:25:55)\n at ok2 (node:assert:94:10)\n at (/test/parallel/test-worker-memory.js:46:14)\n at (/test/parallel/test-worker-memory.js:31:5)\n at emit (node:events:100:22)\n at #onClose (node:worker_threads:709:44)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -152896,7 +152602,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/worker/js_transferable.js:5:5)\n at (/test/parallel/test-worker-message-port-jstransferable-nested-untransferable.js:6:32)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | const {\n3 | Error,\n4 | StringPrototypeSplit,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/worker/js_transferable.js:5:5)\n at (/test/parallel/test-worker-message-port-jstransferable-nested-untransferable.js:6:32)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -152981,7 +152687,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t(port1, context);\n ^\nNotImplementedError: worker_threads.moveMessagePortToContext is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at moveMessagePortToContext (node:worker_threads:490:22)\n at (/test/parallel/test-worker-message-port-move.js:12:16)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ew MessageChannel();\n12 | context.port = moveMessagePortToContext(port1, context);\n ^\nNotImplementedError: worker_threads.moveMessagePortToContext is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at moveMessagePortToContext (node:worker_threads:490:22)\n at (/test/parallel/test-worker-message-port-move.js:12:16)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -153147,7 +152853,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-worker-message-port-transfer-fake-js-transferable-internal.js:20", + "tail": "PACE_ERR: 14,\n INVALID_ACCESS_ERR: 15,\n VALIDATION_ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-worker-message-port-transfer-fake-js-transferable-internal.js:20", "retried": true }, "deno": { @@ -153178,7 +152884,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "R: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-worker-message-port-transfer-fake-js-transferable.js:23", + "tail": ",\n NAMESPACE_ERR: 14,\n INVALID_ACCESS_ERR: 15,\n VALIDATION_ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/parallel/test-worker-message-port-transfer-fake-js-transferable.js:23", "retried": true }, "deno": { @@ -153209,7 +152915,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "DE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n},\n expected: {\n message: \"Cannot transfer FileHandle while in use\",\n name: \"DataCloneError\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-message-port-transfer-filehandle.js:104:10", + "tail": "R: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n},\n expected: {\n message: \"Cannot transfer FileHandle while in use\",\n name: \"DataCloneError\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-message-port-transfer-filehandle.js:104:10", "retried": true }, "deno": { @@ -153240,7 +152946,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ONE_ERR: 25,\n toString: [Function: toString],\n},\n expected: {\n name: \"DataCloneError\",\n message: /function foo\\(\\) \\{\\} could not be cloned\\.$/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-message-port-transfer-native.js:15:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "R: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n},\n expected: {\n name: \"DataCloneError\",\n message: /function foo\\(\\) \\{\\} could not be cloned\\.$/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-message-port-transfer-native.js:15:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -153464,7 +153170,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error (node:events:50:13)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-message-type-unknown.js:16:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "nternalBinding(\"worker\") is not implemented in Bun\n at emitError (node:events:50:13)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)\n\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-message-type-unknown.js:16:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -153495,7 +153201,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted values to be strictly deep-equal:\n+ actual - expected\n\n+ []\n- [\n- 'WORKER'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"WORKER\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-messageport-hasref.js:33:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "agePortTypes(), ['WORKER']);\n ^\nAssertionError: Expected values to be strictly deep-equal:\n+ actual - expected\n\n+ []\n- [\n- 'WORKER'\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [ \"WORKER\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-messageport-hasref.js:33:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -154275,7 +153981,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ssage: true,\n actual: undefined,\n expected: {\n maxOldGenerationSizeMb: 16,\n maxYoungGenerationSizeMb: 4,\n codeRangeSizeMb: 16,\n stackSizeMb: 1,\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-resource-limits.js:22:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "axYoungGenerationSizeMb: 4,\n- stackSizeMb: 1\n- }\n\n generatedMessage: true,\n actual: undefined,\n expected: {\n maxOldGenerationSizeMb: 16,\n maxYoungGenerationSizeMb: 4,\n codeRangeSizeMb: 16,\n stackSizeMb: 1,\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-worker-resource-limits.js:22:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -154393,7 +154099,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at (/test/common/index.js:743:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "d'\n }\n\n at compareExceptionKey (node:assert:237:86)\n at expectedException (node:assert:282:28)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at (/test/common/index.js:743:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at #onError (node:worker_threads:725:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -155053,9 +154759,9 @@ }, "bun": { "pass": false, - "timeout": false, + "timeout": true, "exit": null, - "tail": "ASSERTION FAILED: MemoryExhaustion: Crash intentionally because memory is exhausted.\nfailureMode != AllocationFailureMode::Assert\nvendor/WebKit/Source/JavaScriptCore/heap/LocalAllocator.cpp(164) : void *JSC::LocalAllocator::allocateSlowCase(JSC::Heap &, size_t, GCDeferralContext *, AllocationFailureMode)", + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -155246,7 +154952,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-destroy.js:5:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-destroy.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -155275,7 +154981,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "| const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-duplex.js:5:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-duplex.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -155304,7 +155010,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nst {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-exceptions.js:5:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-exceptions.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -155333,7 +155039,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "onst {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-read-stop.js:6:7)\n\nBun v1.4.0 (macOS arm64)", + "tail": "1 | 'use strict';\n2 | \n3 | const {\n4 | Symbol,\n5 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/js_stream_socket.js:5:5)\n at (/test/parallel/test-wrap-js-stream-read-stop.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -155362,7 +155068,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed values to be strictly equal:\n+ actual - expected\n\n+ 'good.example.com'\n- undefined\n\n generatedMessage: true,\n actual: \"good.example.com\",\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-x509-escaping.js:452:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " { subject: 'always' }),\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 'good.example.com'\n- undefined\n\n generatedMessage: true,\n actual: \"good.example.com\",\n expected: undefined,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-x509-escaping.js:452:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -155449,7 +155155,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at _write (internal:streams/writable:237:31)\n at (internal:streams/writable:251:16)\n at (node:zlib:173:15)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-zlib-brotli-flush-invalid-kind.js:61:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": " DataView. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at _write (internal:streams/writable:237:31)\n at (internal:streams/writable:251:16)\n at (node:zlib:173:15)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-zlib-brotli-flush-invalid-kind.js:61:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -156136,11 +155842,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "const zlib = require('node:zlib');\n7 | const { test } = require('node:test');\n8 | \n9 | test('zlib flush', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-zlib-flush.js:9:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -156475,7 +156179,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ":assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-zlib-not-string-or-buffer.js:20:10)\n at forEach (1:11)\n at (/test/parallel/test-zlib-not-string-or-buffer.js:19:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rrayBuffer. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at zlibBufferSync (node:zlib:93:31)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-zlib-not-string-or-buffer.js:20:10)\n at forEach (1:11)\n at (/test/parallel/test-zlib-not-string-or-buffer.js:19:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -156612,7 +156316,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " cases) {\n93 | test(`rejectGarbageAfterEnd rejects trailing input for ${label}`, async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-zlib-reject-garbage-after-end.js:93:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "llel/test-zlib-reject-garbage-after-end.js:129:12\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n at done (unknown:1:1)\n at node:test:1597:13\n at processTicksAndRejections (native:7:39)\n(fail) rejectGarbageAfterEnd must be a boolean [0.53ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [87.00ms]", "retried": true }, "deno": { @@ -156726,7 +156430,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-truncated.js:46:12\n at zlibBufferOnEnd (node:zlib:84:12)\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "al: undefined,\n expected: /unexpected end of file/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-truncated.js:46:12\n at zlibBufferOnEnd (node:zlib:84:12)\n at emit (node:events:97:22)\n at endReadableNT (internal:streams/readable:901:50)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -156759,7 +156463,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n14 | );\n15 | }\n16 | \n17 | test('DecompressionStream deflate emits TypeError on trailing data', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-zlib-type-error.js:17:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-type-error.js:55:10\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) zlib sync decompression honors rejectGarbageAfterEnd [0.72ms]\n\n 2 pass\n 2 fail\nRan 4 tests across 1 file. [77.00ms]", "retried": true }, "deno": { @@ -156790,7 +156494,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "before) <= 0.05,\n ^\nAssertionError: Expected after-GC delta 103228 to be less than 5 % of before-GC delta 0\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-unused-weak.js:17:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ternal;\n16 | \n17 | assert((afterGC - before) / (afterCreation - before) <= 0.05,\n ^\nAssertionError: Expected after-GC delta 102490 to be less than 5 % of before-GC delta 0\n generatedMessage: false,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-unused-weak.js:17:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -156870,11 +156574,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "6\n10 | test('Writes to a stream should finish even after the readable side has been ended.', async (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-zlib-write-after-end.js:10:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -156953,11 +156655,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "from\n11 | // the header of the compressed stream.\n12 | test('zlib should support zero windowBits', (t) => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/parallel/test-zlib-zero-windowBits.js:12:1)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -156985,7 +156685,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ry: dict }).length,\n ^\nAssertionError: Expected values to be strictly equal:\n\n166 !== 96\n\n generatedMessage: true,\n actual: 166,\n expected: 96,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-zstd-dictionary.js:36:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "6 | assert.strictEqual(zlib.zstdCompressSync(input, { dictionary: dict }).length,\n ^\nAssertionError: Expected values to be strictly equal:\n\n166 !== 96\n\n generatedMessage: true,\n actual: 166,\n expected: 96,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-zlib-zstd-dictionary.js:36:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -157128,7 +156828,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "perator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertInvalidPledgedSrcSize (/test/parallel/test-zlib-zstd-pledged-src-size.js:40:10)\n at /test/parallel/test-zlib-zstd-pledged-src-size.js:51:3\n\nBun v1.4.0 (macOS arm64)", + "tail": ").\n generatedMessage: false,\n actual: undefined,\n expected: {\n name: \"TypeError\",\n code: \"ERR_INVALID_ARG_TYPE\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertInvalidPledgedSrcSize (/test/parallel/test-zlib-zstd-pledged-src-size.js:40:10)\n at /test/parallel/test-zlib-zstd-pledged-src-size.js:51:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -157219,7 +156919,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 39\n [2mat [0mthrows[2m ([0m[0m[36mnode:assert[0m[2m:[0m[33m428[0m[2m:[33m15[0m[2m)[0m\n[0m [2mat [0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-assert-colors.js[0m[2m:[0m[33m32[0m[2m:[33m10[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 39\n0m[0m[36mnode:assert[0m[2m:[0m[33m393[0m[2m:[33m20[0m[2m)[0m\n[0m [2mat [0mthrows[2m ([0m[0m[36mnode:assert[0m[2m:[0m[33m428[0m[2m:[33m15[0m[2m)[0m\n[0m [2mat [0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-assert-colors.js[0m[2m:[0m[33m32[0m[2m:[33m10[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157318,7 +157018,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 13\nng[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-async-wrap-getasyncid-tty.js[0m[2m:[0m[33m9[0m[2m:[33m21[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 13\n[0m[0m[1m[3minternalBinding[0m[2m ([0m[0m[36minternal:test/binding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-async-wrap-getasyncid-tty.js[0m[2m:[0m[33m9[0m[2m:[33m21[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157353,7 +157053,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 15 output lines, got 12\nm [1mfoobar[0m\n bla[0m[2m:[0m [0m[33mtrue[0m[0m[2m,[0m\n\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-fatal-error.js[0m[2m:[0m[33m8[0m[2m:[33m17[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 15 output lines, got 12\n2m;[0m\n [31m[1m^[0m\n[0m[31mTypeError[0m[2m:[0m [1mfoobar[0m\n bla[0m[2m:[0m [0m[33mtrue[0m[0m[2m,[0m\n\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-fatal-error.js[0m[2m:[0m[33m8[0m[2m:[33m17[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157387,7 +157087,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 13\nding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-handle-wrap-hasref-tty.js[0m[2m:[0m[33m11[0m[2m:[33m15[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 13\nt [0m[0m[1m[3minternalBinding[0m[2m ([0m[0m[36minternal:test/binding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-handle-wrap-hasref-tty.js[0m[2m:[0m[33m11[0m[2m:[33m15[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157653,7 +157353,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 1 output lines, got 9\nin.end(`foobar\n`)', 'process.stdin.end' is Infinity)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-stdin-write.js[0m[2m:[0m[33m3[0m[2m:[33m15[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 1 output lines, got 9\n[2m:[0m [1mprocess.stdin.end is not a function. (In 'process.stdin.end(`foobar\n`)', 'process.stdin.end' is Infinity)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-stdin-write.js[0m[2m:[0m[33m3[0m[2m:[33m15[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157751,7 +157451,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 12\njs[0m[2m:[0m[33m10[0m[2m:[33m5[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-testpy-env-var-via-comment.js[0m[2m:[0m[33m15[0m[2m:[33m7[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 12\nymous>[0m[2m ([0m[0m[36m[2m/[0m[36mlib/internal/options.js[0m[2m:[0m[33m10[0m[2m:[33m5[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-testpy-env-var-via-comment.js[0m[2m:[0m[33m15[0m[2m:[33m7[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157954,7 +157654,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 2 output lines, got 21\n[2m:[0m [0m[32m\"simple\"[0m[0m[2m,[0m\n code[0m[2m:[0m [32m\"ERR_ASSERTION\"[0m\n\n[0m [2mat [0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-color-support.js[0m[2m:[0m[33m116[0m[2m:[33m10[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 2 output lines, got 21\nrator[0m[2m:[0m [0m[32m\"strictEqual\"[0m[0m[2m,[0m\n diff[0m[2m:[0m [0m[32m\"simple\"[0m[0m[2m,[0m\n code[0m[2m:[0m [32m\"ERR_ASSERTION\"[0m\n\n[0m [2mat [0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-color-support.js[0m[2m:[0m[33m116[0m[2m:[33m10[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -157988,7 +157688,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 17\n diff[0m[2m:[0m [0m[32m\"simple\"[0m[0m[2m,[0m\n code[0m[2m:[0m [32m\"ERR_ASSERTION\"[0m\n\n[0m [2mat [0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-isatty.js[0m[2m:[0m[33m14[0m[2m:[33m8[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 17\nm[0m[2m,[0m\n operator[0m[2m:[0m [0m[32m\"==\"[0m[0m[2m,[0m\n diff[0m[2m:[0m [0m[32m\"simple\"[0m[0m[2m,[0m\n code[0m[2m:[0m [32m\"ERR_ASSERTION\"[0m\n\n[0m [2mat [0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-isatty.js[0m[2m:[0m[33m14[0m[2m:[33m8[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -158021,7 +157721,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 11\ntdin.end()', 'process.stdin.end' is Infinity)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-stdin-call-end.js[0m[2m:[0m[33m8[0m[2m:[33m15[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 11\n0m[2m:[0m [1mprocess.stdin.end is not a function. (In 'process.stdin.end()', 'process.stdin.end' is Infinity)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-stdin-call-end.js[0m[2m:[0m[33m8[0m[2m:[33m15[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -158183,7 +157883,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 0 output lines, got 13\ntest/binding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-window-size.js[0m[2m:[0m[33m7[0m[2m:[33m17[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 0 output lines, got 13\n [2mat [0m[0m[1m[3minternalBinding[0m[2m ([0m[0m[36minternal:test/binding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-window-size.js[0m[2m:[0m[33m7[0m[2m:[33m17[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -158216,7 +157916,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "expected 2 output lines, got 13\nternal:test/binding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-wrap.js[0m[2m:[0m[33m6[0m[2m:[33m17[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", + "tail": "expected 2 output lines, got 13\n\n\n[0m [2mat [0m[0m[1m[3minternalBinding[0m[2m ([0m[0m[36minternal:test/binding[0m[2m:[0m[33m79[0m[2m:[33m22[0m[2m)[0m\n[0m [2mat [0m[0m[2m[0m[2m ([0m[0m[36m[2m/[0m[36mtest/pseudo-tty/test-tty-wrap.js[0m[2m:[0m[33m6[0m[2m:[33m17[0m[2m)[0m\n[0m\n[2mBun v1.4.0 (macOS arm64)[0m", "retried": true }, "deno": { @@ -158411,7 +158111,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "* 32 + 16;\n13 | \n14 | let buf;\n15 | try {\n16 | buf = Buffer.alloc(size);\n ^\nRangeError: The value of \"size\" is out of range. It must be >= 0 && <= 4294967296. Received 4_294_967_312\n code: \"ERR_OUT_OF_RANGE\"\n\n at (/test/pummel/test-buffer-large-size-copy.js:16:16)\n\nBun v1.4.0 (macOS arm64)", + "tail": "undary, with headroom for the shift below.\n12 | const size = 2 ** 32 + 16;\n13 | \n14 | let buf;\n15 | try {\n16 | buf = Buffer.alloc(size);\n ^\nRangeError: The value of \"size\" is out of range. It must be >= 0 && <= 4294967296. Received 4_294_967_312\n code: \"ERR_OUT_OF_RANGE\"\n\n at (/test/pummel/test-buffer-large-size-copy.js:16:16)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -158470,7 +158170,14 @@ "bun": { "pass": true, "timeout": false, - "exit": 0 + "exit": 0, + "retried": true, + "firstAttempt": { + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms" + } }, "deno": { "pass": true, @@ -158616,7 +158323,14 @@ "bun": { "pass": true, "timeout": false, - "exit": 0 + "exit": 0, + "retried": true, + "firstAttempt": { + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms" + } }, "deno": { "pass": true, @@ -158698,7 +158412,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": "equal:\n+ actual - expected\n\n Comparison {\n+ code: 'ENOMEM',\n+ message: \"ENOMEM: not enough memory, read '/test/.tmp.186/toobig.txt'\",\n- code: 'ERR_STRING_TOO_LONG',\n- message: 'Cannot create a string longer than 0x7fffffff characters',\n name: 'Error'\n }\n\n at (/test/pummel/test-fs-readfile-tostring-fail.js:77:9)\n at guarded (internal:shared:121:30)", + "tail": "qual:\n+ actual - expected\n\n Comparison {\n+ code: 'ENOMEM',\n+ message: \"ENOMEM: not enough memory, read '/test/.tmp.5268/toobig.txt'\",\n- code: 'ERR_STRING_TOO_LONG',\n- message: 'Cannot create a string longer than 0x7fffffff characters',\n name: 'Error'\n }\n\n at (/test/pummel/test-fs-readfile-tostring-fail.js:77:9)\n at guarded (internal:shared:121:30)", "retried": true }, "deno": { @@ -158901,7 +158615,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-fs-promise.js:20:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "ode_name: 'FSReqPromise', edge_name: 'native_to_javascript' } in the heap snapshot.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-fs-promise.js:20:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -158932,7 +158646,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode:assert:77:12)\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at (/test/pummel/test-heapdump-http2.js:33:5)\n at emit (node:events:106:22)\n at (node:http2:3306:22)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ould not find target edge { node_name: 'Http2Stream', edge_name: 'native_to_javascript' } in the heap snapshot.\n at fail (node:assert:77:12)\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at (/test/pummel/test-heapdump-http2.js:33:5)\n at emit (node:events:106:22)\n at (node:http2:3306:22)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -158963,7 +158677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-inspector.js:23:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "{ node_name: 'Node / InspectorSession', edge_name: 'session' } in the heap snapshot.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-inspector.js:23:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159025,7 +158739,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ssert:77:12)\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at (/test/pummel/test-heapdump-tls.js:30:3)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "or: Could not find target edge { node_name: 'Node / NodeBIO', edge_name: 'enc_out' } in the heap snapshot.\n at fail (node:assert:77:12)\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at (/test/pummel/test-heapdump-tls.js:30:3)\n at emit (node:events:97:22)\n at emitListeningNextTick (node:net:2157:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159056,7 +158770,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-urlpattern.js:17:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "e_name: 'Node / ada::url_pattern', edge_name: 'url_pattern' } in the heap snapshot.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-urlpattern.js:17:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159087,7 +158801,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "efined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-vm-script.js:7:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "ld not find target edge { node_name: '(shared function info)' } in the heap snapshot.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-vm-script.js:7:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159118,7 +158832,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ndefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-worker.js:19:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "t edge { node_name: 'Worker', edge_name: 'native_to_javascript' } in the heap snapshot.\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: \"fail\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validateByRetainingPathFromNodes (/test/common/heap.js:289:14)\n at /test/pummel/test-heapdump-worker.js:19:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159271,7 +158985,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[i]),\n ^\nNotImplementedError: node:v8 setHeapSnapshotNearHeapLimit is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/pummel/test-heapsnapshot-near-heap-limit-by-api.js:19:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssert.throws(() => v8.setHeapSnapshotNearHeapLimit(invalidValues[i]),\n ^\nNotImplementedError: node:v8 setHeapSnapshotNearHeapLimit is not yet implemented in Bun.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/pummel/test-heapsnapshot-near-heap-limit-by-api.js:19:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159825,7 +159539,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".write(largeBuffer), stringTooLongError);\n ^\nerror: Cannot create a string longer than 2147483647 characters\n code: \"ERR_STRING_TOO_LONG\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/pummel/test-string-decoder-large-buffer.js:36:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "er = new StringDecoder('utf8');\n36 | assert.throws(() => decoder.write(largeBuffer), stringTooLongError);\n ^\nerror: Cannot create a string longer than 2147483647 characters\n code: \"ERR_STRING_TOO_LONG\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/pummel/test-string-decoder-large-buffer.js:36:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -159854,7 +159568,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "6,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/pummel/test-structuredclone-jstransferable.js:6\n\nBun v1.4.0 (macOS arm64)", + "tail": "NAMESPACE_ERR: 14,\n INVALID_ACCESS_ERR: 15,\n VALIDATION_ERR: 16,\n TYPE_MISMATCH_ERR: 17,\n SECURITY_ERR: 18,\n NETWORK_ERR: 19,\n ABORT_ERR: 20,\n URL_MISMATCH_ERR: 21,\n QUOTA_EXCEEDED_ERR: 22,\n TIMEOUT_ERR: 23,\n INVALID_NODE_TYPE_ERR: 24,\n DATA_CLONE_ERR: 25,\n toString: [Function: toString],\n}\n at /test/pummel/test-structuredclone-jstransferable.js:6\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160119,7 +159833,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "js:16:50)\n at new State (/test/common/heap.js:116:26)\n at recordState (/test/common/heap.js:214:10)\n at (/test/pummel/test-worker-take-heapsnapshot.js:13:20)", + "tail": "ernalBinding(\"heap_utils\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at buildEmbedderGraph (/test/common/heap.js:16:50)\n at new State (/test/common/heap.js:116:26)\n at recordState (/test/common/heap.js:214:10)\n at (/test/pummel/test-worker-take-heapsnapshot.js:13:20)", "retried": true }, "deno": { @@ -160181,7 +159895,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "17 | fs.unlinkSync(reports[0]);\n18 | }\n19 | \n20 | describe('report exclude network option', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at (/test/report/test-report-exclude-network.js:20:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-exclude-network.js:60:12\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) report exclude network option > should not do DNS queries in libuv if exclude network [24.36ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [158.00ms]", "retried": true }, "deno": { @@ -160441,7 +160155,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception-compat.js:25:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "trictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception-compat.js:25:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160532,7 +160246,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception-primitives.js:25:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception-primitives.js:25:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160565,7 +160279,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception-symbols.js:24:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "rictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception-symbols.js:24:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160598,7 +160312,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception.js:24:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/report/test-report-uncaught-exception.js:24:10\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160631,7 +160345,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "78 | for (const i of libuv_handles_array) {\n ^\nTypeError: null is not an object (evaluating 'i of libuv_handles_array')\n at (/test/report/test-report-uv-handles.js:178:18)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n\nBun v1.4.0 (macOS arm64)", + "tail": "buv_handles_array = libuv_handles_str.match(get_handle_inner);\n178 | for (const i of libuv_handles_array) {\n ^\nTypeError: null is not an object (evaluating 'i of libuv_handles_array')\n at (/test/report/test-report-uv-handles.js:178:18)\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160664,7 +160378,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/common/report.js:45:5)\n at basic (/test/report/test-report-worker.js:21:10)\n at /test/report/test-report-worker.js:49:9\n at processTicksAndRejections (native:7:39)", + "tail": " at forEach (native:1:11)\n at checkForUnknownFields (/test/common/report.js:341:23)\n at _validateContent (/test/common/report.js:77:3)\n at validateContent (/test/common/report.js:45:5)\n at basic (/test/report/test-report-worker.js:21:10)\n at /test/report/test-report-worker.js:49:9\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -160697,7 +160411,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validate (/test/report/test-report-writereport-exclude-env.js:17:10)\n at /test/report/test-report-writereport-exclude-env.js:26:3\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validate (/test/report/test-report-writereport-exclude-env.js:17:10)\n at /test/report/test-report-writereport-exclude-env.js:26:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -160730,7 +160444,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validate (/test/report/test-report-writereport.js:17:10)\n at /test/report/test-report-writereport.js:26:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "(reports.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at validate (/test/report/test-report-writereport.js:17:10)\n at /test/report/test-report-writereport.js:26:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161139,7 +160853,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "out ---\n\n[process 30111]: status = 1, signal = null\nerror: - stderr did not match /\"assets\" field of .*sea-config\\.json is not a map of strings/\n options: {\n cwd: \"/test/.tmp.5351\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-sea-config sea-config.json\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "-config.json\"\nnote: Bun cannot run json files directly\n\n[process 24940]: --- stdout ---\n\n[process 24940]: status = 1, signal = null\nerror: - stderr did not match /\"assets\" field of .*sea-config\\.json is not a map of strings/\n options: {\n cwd: \"/test/.tmp.5351\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-sea-config sea-config.json\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161170,7 +160884,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ut ---\n\n[process 30153]: status = 1, signal = null\nerror: - stderr did not match /Cannot read asset nonexistent\\.txt: no such file or directory/\n options: {\n cwd: \"/test/.tmp.5352\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-sea-config sea-config.json\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "config.json\"\nnote: Bun cannot run json files directly\n\n[process 24943]: --- stdout ---\n\n[process 24943]: status = 1, signal = null\nerror: - stderr did not match /Cannot read asset nonexistent\\.txt: no such file or directory/\n options: {\n cwd: \"/test/.tmp.5352\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-sea-config sea-config.json\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161687,7 +161401,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tatus = 1, signal = null\nerror: - stderr did not match /Cannot read single executable configuration from non-existent-relative\\.json/\n options: {\n cwd: \"/test/.tmp.5371\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-sea-config non-existent-relative.json\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "non-existent-relative.json\"\n\n[process 24963]: --- stdout ---\n\n[process 24963]: status = 1, signal = null\nerror: - stderr did not match /Cannot read single executable configuration from non-existent-relative\\.json/\n options: {\n cwd: \"/test/.tmp.5371\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --experimental-sea-config non-existent-relative.json\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161718,7 +161432,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".strictEqual(child.status, 0);\n27 | assert(existsSync(output));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sea/test-single-executable-blob-config.js:27:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "nfig], {\n24 | cwd: tmpdir.path,\n25 | });\n26 | assert.strictEqual(child.status, 0);\n27 | assert(existsSync(output));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sea/test-single-executable-blob-config.js:27:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161749,7 +161463,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rnalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/sequential/test-async-wrap-getasyncid.js:11:24)\n\nBun v1.4.0 (macOS arm64)", + "tail": "}\n77 | }, icu;\n78 | }\n79 | let err = Error(`internalBinding(\"${name}\") is not implemented in Bun`);\n ^\nerror: internalBinding(\"async_wrap\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at (/test/sequential/test-async-wrap-getasyncid.js:11:24)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161836,7 +161550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ")\n at (/test/sequential/test-child-process-execsync.js:43:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/sequential/test-child-process-execsync.js:42:8)\n\nBun v1.4.0 (macOS arm64)", + "tail": "stderr: null,\n code: \"ENOENT\"\n\n at spawnSync (node:child_process:248:22)\n at execSync (node:child_process:302:109)\n at (/test/sequential/test-child-process-execsync.js:43:16)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/sequential/test-child-process-execsync.js:42:8)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -161916,11 +161630,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "/test/sequential/test-cli-syntax-bad.js:29:5)\n at forEach (1:11)\n at (/test/sequential/test-cli-syntax-bad.js:28:14)\n at forEach (1:11)\n at (/test/sequential/test-cli-syntax-bad.js:24:3)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -161948,7 +161660,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "N\"\n\n at /test/sequential/test-cli-syntax-file-not-found.js:30:14\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-cli-syntax-file-not-found.js:30:14\n at exitHandler (node:child_process:117:27)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162010,7 +161722,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "te/test/sequential/test-cli-syntax-require.js:20:5\n at forEach (native:1:11)\n at /test/sequential/test-cli-syntax-require.js:16:23\n at forEach (native:1:11)\n at /test/sequential/test-cli-syntax-require.js:15:19\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/common/child_process.js:52:7)\n at expectSyncExit (/test/common/child_process.js:122:32)\n at /test/sequential/test-cli-syntax-require.js:20:5\n at forEach (native:1:11)\n at /test/sequential/test-cli-syntax-require.js:16:23\n at forEach (native:1:11)\n at /test/sequential/test-cli-syntax-require.js:15:19\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162296,7 +162008,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ual(profiles.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 2\n\n generatedMessage: true,\n actual: 1,\n expected: 2,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-cpu-prof-dir-worker.js:42:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "| const profiles = getCpuProfiles(dir);\n42 | assert.strictEqual(profiles.length, 2);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 2\n\n generatedMessage: true,\n actual: 1,\n expected: 2,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-cpu-prof-dir-worker.js:42:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162472,7 +162184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "al(profiles.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-cpu-prof-worker-argv.js:36:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " profiles = getCpuProfiles(tmpdir.path);\n36 | assert.strictEqual(profiles.length, 1);\n ^\nAssertionError: Expected values to be strictly equal:\n\n0 !== 1\n\n generatedMessage: true,\n actual: 0,\n expected: 1,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-cpu-prof-worker-argv.js:36:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162503,7 +162215,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ffer.from('longer');\n17 | function testFastPath(buf1, buf2) {\n18 | return crypto.timingSafeEqual(buf1, buf2);\n19 | }\n20 | eval('%PrepareFunctionForOptimization(testFastPath)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/sequential/test-crypto-timing-safe-equal-fast.js:20:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "15 | const bar = Buffer.from('bar');\n16 | const longer = Buffer.from('longer');\n17 | function testFastPath(buf1, buf2) {\n18 | return crypto.timingSafeEqual(buf1, buf2);\n19 | }\n20 | eval('%PrepareFunctionForOptimization(testFastPath)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/sequential/test-crypto-timing-safe-equal-fast.js:20:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162559,7 +162271,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Debugger exited before showing the prompt (code 1, signal null); output: \n at (/test/sequential/test-debug-prompt.js:37:20)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at emit (node:events:97:22)\n at emitCloseNT (internal:streams/destroy:78:14)", + "tail": "(!promptSeen) {\n37 | reject(new Error(\n ^\nerror: Debugger exited before showing the prompt (code 1, signal null); output: \n at (/test/sequential/test-debug-prompt.js:37:20)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at emit (node:events:97:22)\n at emitCloseNT (internal:streams/destroy:78:14)", "retried": true }, "deno": { @@ -162621,7 +162333,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/sequential/test-debugger-debug-brk.js:16:3)\n at /test/sequential/test-debugger-debug-brk.js:20:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "tderr.toString();\n16 | assert(stderr.includes('DEP0062'));\n ^\nAssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at test (/test/sequential/test-debugger-debug-brk.js:16:3)\n at /test/sequential/test-debugger-debug-brk.js:20:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162652,7 +162364,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 9\n\n generatedMessage: true,\n actual: 1,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-debugger-invalid-args.js:14:10\n at processTicksAndRejections (native:7:39)", + "tail": "st code = await cli.quit();\n14 | assert.strictEqual(code, 9);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 9\n\n generatedMessage: true,\n actual: 1,\n expected: 9,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-debugger-invalid-args.js:14:10\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -162857,7 +162569,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "l(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-diagnostic-dir-cpu-prof.js:41:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "log(output.stderr.toString());\n40 | }\n41 | assert.strictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-diagnostic-dir-cpu-prof.js:41:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162888,7 +162600,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-diagnostic-dir-heap-prof.js:84:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "og(output.stderr.toString());\n83 | }\n84 | assert.strictEqual(output.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-diagnostic-dir-heap-prof.js:84:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -162919,7 +162631,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "= require('assert');\n5 | const { inspect } = require('util');\n6 | const { ERR_INVALID_ARG_TYPE } = require('internal/errors').codes;\n ^\nTypeError: Cannot destructure property 'ERR_INVALID_ARG_TYPE' from null or undefined value\n at (/test/sequential/test-error-serdes.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ls\n2 | 'use strict';\n3 | require('../common');\n4 | const assert = require('assert');\n5 | const { inspect } = require('util');\n6 | const { ERR_INVALID_ARG_TYPE } = require('internal/errors').codes;\n ^\nTypeError: Cannot destructure property 'ERR_INVALID_ARG_TYPE' from null or undefined value\n at (/test/sequential/test-error-serdes.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163062,7 +162774,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:27)\n at get (node:http:12:20)\n at getAll (/test/sequential/test-gc-http-client-onerror.js:37:20)\n at (/test/sequential/test-gc-http-client-onerror.js:27:5)", + "tail": "20)\n at connect (node:net:1014:30)\n at createSocket (node:_http_agent:148:40)\n at addRequest (node:_http_agent:125:22)\n at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:27)\n at get (node:http:12:20)\n at getAll (/test/sequential/test-gc-http-client-onerror.js:37:20)\n at (/test/sequential/test-gc-http-client-onerror.js:27:5)", "retried": true }, "deno": { @@ -163120,7 +162832,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "p_agent:125:22)\n at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:27)\n at get (node:http:12:20)\n at getAll (/test/sequential/test-gc-http-client.js:35:20)\n at (/test/sequential/test-gc-http-client.js:25:5)", + "tail": "Tick (native:45:20)\n at connect (node:net:1014:30)\n at createSocket (node:_http_agent:148:40)\n at addRequest (node:_http_agent:125:22)\n at new ClientRequest (node:_http_client:191:25)\n at request (node:http:9:27)\n at get (node:http:12:20)\n at getAll (/test/sequential/test-gc-http-client.js:35:20)\n at (/test/sequential/test-gc-http-client.js:25:5)", "retried": true }, "deno": { @@ -163149,7 +162861,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "l(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-get-heapsnapshot-options.js:38:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "37 | console.log('[STDOUT]', stdout);\n38 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-get-heapsnapshot-options.js:38:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163180,7 +162892,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "l(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-heapdump-flag-custom-dir.js:44:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ath, args, { cwd: tmpdir.path });\n43 | \n44 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-heapdump-flag-custom-dir.js:44:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163211,7 +162923,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-heapdump-flag.js:39:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ocess.execPath, args, { cwd: tmpdir.path });\n38 | \n39 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-heapdump-flag.js:39:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163242,7 +162954,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "PE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/sequential/test-heapdump.js:44:10)\n at forEach (1:11)\n at (/test/sequential/test-heapdump.js:43:40)\n\nBun v1.4.0 (macOS arm64)", + "tail": "i), {\n ^\nTypeError: The \"path\" argument must be of type string. Received type number (1)\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/sequential/test-heapdump.js:44:10)\n at forEach (1:11)\n at (/test/sequential/test-heapdump.js:43:40)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163711,9 +163423,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "uld load and stream a static network resource using loadNetworkResource and IO.read', async () => {\n ^\nerror: Cannot use test outside of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/sequential/test-inspector-network-resource.js:41:1)\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -163771,7 +163483,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "}\n225 | #listen() {\n226 | let { protocol, hostname, port, pathname } = this.#url;\n227 | let server = Bun.serve({\n ^\nerror: Failed to start server. Is port 6499 in use?\n syscall: \"listen\",\n errno: 0,\n code: \"EADDRINUSE\"\n\n at #listen (internal:debugger:227:29)\n at new Debugger (internal:debugger:213:44)\n at $ (internal:debugger:116:13)", + "tail": "(RangeError).\n generatedMessage: false,\n actual: undefined,\n expected: {\n name: \"RangeError\",\n code: \"ERR_SOCKET_BAD_PORT\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at primaryProcessMain (/test/sequential/test-inspector-port-cluster.js:259:14)\n at /test/sequential/test-inspector-port-cluster.js:350:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163802,7 +163514,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "valid \"main\"/,\n path: /fixtures[/\\\\]packages[/\\\\]missing-main-no-index[/\\\\]package\\.json/,\n requestPath: /^\\.\\.[/\\\\]fixtures[/\\\\]packages[/\\\\]missing-main-no-index$/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-module-loading.js:119:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ng-main-no-index[/\\\\]doesnotexist\\.js'\\. Please.+package\\.json.+valid \"main\"/,\n path: /fixtures[/\\\\]packages[/\\\\]missing-main-no-index[/\\\\]package\\.json/,\n requestPath: /^\\.\\.[/\\\\]fixtures[/\\\\]packages[/\\\\]missing-main-no-index$/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-module-loading.js:119:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -163971,14 +163683,7 @@ "bun": { "pass": true, "timeout": false, - "exit": 0, - "retried": true, - "firstAttempt": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "server2:EADDRINUSE'\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/sequential/test-net-listen-shared-ports.js:36:14)\n at emit (node:events:124:23)\n at emit (node:events:103:22)\n at #emitIpcMessage (node:child_process:770:14)\n\nBun v1.4.0 (macOS arm64)" - } + "exit": 0 }, "deno": { "pass": false, @@ -164145,7 +163850,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uster (node:net:2177:24)\n at listen (node:net:2054:20)\n at (/test/sequential/test-net-server-listen-ipv6-link-local.js:124:10)\n at fail (node:assert:77:12)\n at mustNotCall (/test/common/index.js:568:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at emitErrorNextTick (node:net:2139:12)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ymous> (/test/sequential/test-net-server-listen-ipv6-link-local.js:93:10)\n at fail (node:assert:77:12)\n at mustNotCall (/test/common/index.js:568:12)\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at emitErrorNextTick (node:net:2139:12)\n-------------------------------\n\n\n 0 pass\n 0 fail\n 3 errors\nRan 0 tests across 1 file. [73.00ms]", "retried": true }, "deno": { @@ -164205,7 +163910,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ndefined,\n expected: \"node\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkNodeTiming (/test/sequential/test-perf-hooks.js:49:10)\n at /test/sequential/test-perf-hooks.js:73:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "nError: Expected values to be strictly equal:\n+ actual - expected\n\n+ undefined\n- 'node'\n\n generatedMessage: true,\n actual: undefined,\n expected: \"node\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at checkNodeTiming (/test/sequential/test-perf-hooks.js:49:10)\n at /test/sequential/test-perf-hooks.js:73:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164236,7 +163941,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "plit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/sequential/test-performance-eventloopdelay.js:10:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/sequential/test-performance-eventloopdelay.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164323,7 +164028,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "_ASSERTION\"\n\n at /test/sequential/test-process-warnings.js:35:10\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-process-warnings.js:35:10\n at exitHandler (node:child_process:101:15)\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164354,7 +164059,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "qual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-repl-timeout-throw.js:58:10\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ps://bun.com/discord\",\n expected: \"> 3\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-repl-timeout-throw.js:58:10\n at emit (node:events:103:22)\n at #maybeClose (node:child_process:822:16)\n at #handleOnExit (node:child_process:565:72)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164412,7 +164117,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " expected: \"SIGTERM\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-resolution-inspect-brk.js:20:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "null !== 'SIGTERM'\n\n generatedMessage: true,\n actual: null,\n expected: \"SIGTERM\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-resolution-inspect-brk.js:20:12\n at emit (node:events:103:22)\n at #handleOnExit (node:child_process:565:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164441,7 +164146,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at spawnRunner (/test/sequential/test-runner-run-inspect.mjs:20:10)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ert.strictEqual(code, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at spawnRunner (/test/sequential/test-runner-run-inspect.mjs:20:10)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164526,7 +164231,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "mbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/sequential/test-timers-block-eventloop.js:6:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/sequential/test-timers-block-eventloop.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164555,7 +164260,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "This,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/sequential/test-timers-set-interval-excludes-callback-duration.js:5:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "44 | SymbolFor,\n45 | SymbolPrototypeGetDescription,\n46 | SymbolReplace,\n47 | SymbolSplit,\n48 | globalThis,\n49 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:49:5)\n at (/test/sequential/test-timers-set-interval-excludes-callback-duration.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164581,11 +164286,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "TION\"\n\n at /test/sequential/test-tls-connect.js:44:37\n at applyHandlers (node:events:64:20)\n at emitError (node:events:44:27)\n at emitErrorNT (internal:streams/destroy:88:12)\n at emitErrorCloseNT (internal:streams/destroy:69:14)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -164814,9 +164517,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "c(file, readFileSync(file));\n37 | return ready;\n38 | }\n39 | \n40 | \n41 | describe('watch mode - inspect', () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/sequential/test-watch-mode-inspect.mjs:41:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -164878,9 +164581,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "3 | describe('watch mode - watch flags', { concurrency: !process.env.TEST_PARALLEL, timeout: 60_000 }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1693:13)\n at /test/sequential/test-watch-mode-watch-flags.mjs:53:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -164909,9 +164612,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": ".refresh();\n91 | \n92 | describe('watch mode', { concurrency: !process.env.TEST_PARALLEL, timeout: 60_000 }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1693:13)\n at /test/sequential/test-watch-mode-worker.mjs:92:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -164942,9 +164645,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "dir.refresh();\n176 | \n177 | describe('watch mode', { concurrency: !process.env.TEST_PARALLEL, timeout: 60_000 }, () => {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1693:13)\n at /test/sequential/test-watch-mode.mjs:177:1\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -164977,7 +164680,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ictEqual(code, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-without-async-context-frame.mjs:24:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "| \n23 | const [code] = await once(proc, 'exit');\n24 | assert.strictEqual(code, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-without-async-context-frame.mjs:24:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165093,7 +164796,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "0)\n at new State (/test/common/heap.js:116:26)\n at recordState (/test/common/heap.js:214:10)\n at (/test/sequential/test-worker-heapsnapshot-options.js:16:22)", + "tail": "nding(\"heap_utils\") is not implemented in Bun\n code: \"ERR_INVALID_MODULE\"\n\n at internalBinding (internal:test/binding:79:22)\n at buildEmbedderGraph (/test/common/heap.js:16:50)\n at new State (/test/common/heap.js:116:26)\n at recordState (/test/common/heap.js:214:10)\n at (/test/sequential/test-worker-heapsnapshot-options.js:16:22)", "retried": true }, "deno": { @@ -165124,7 +164827,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.5489\",\n encoding: \"utf8\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --prof /test/sequential/test-worker-prof.js child\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n\n[process 40951]: --- stdout ---\nfiles found in working directory before worker starts []\n\n[process 40951]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.5661\",\n encoding: \"utf8\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --prof /test/sequential/test-worker-prof.js child\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165153,7 +164856,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-write-heapsnapshot-options.js:49:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " | console.log('[STDOUT]', stdout);\n49 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/sequential/test-write-heapsnapshot-options.js:49:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165184,7 +164887,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/ zlib.crc32('test', 0)\n11 | assert.strictEqual(zlib.crc32('test', 0), expected);\n12 | return expected;\n13 | }\n14 | \n15 | eval('%PrepareFunctionForOptimization(zlib.crc32)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/sequential/test-zlib-crc32-fast-api.js:15:3)\n\nBun v1.4.0 (macOS arm64)", + "tail": "10 | const expected = 0xd87f7e0c; // zlib.crc32('test', 0)\n11 | assert.strictEqual(zlib.crc32('test', 0), expected);\n12 | return expected;\n13 | }\n14 | \n15 | eval('%PrepareFunctionForOptimization(zlib.crc32)');\n ^\nSyntaxError: Unexpected token '%'\n at (/test/sequential/test-zlib-crc32-fast-api.js:15:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165244,7 +164947,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.fail(`Unexpected path: ${path}`);\n26 | }\n27 | };\n28 | \n29 | describe('use-system-ca', function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/system-ca/test-native-intermediate-certs.mjs:29:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "evaluating 'err.cause.code')\n at (/test/system-ca/test-native-intermediate-certs.mjs:75:34)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) use-system-ca > signed with a trusted intermediate but not trusted root CA certificate > can connect successfully [17.81ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [975.00ms]", "retried": true }, "deno": { @@ -165281,7 +164984,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.fail(`Unexpected path: ${path}`);\n27 | }\n28 | };\n29 | \n30 | describe('use-system-ca', function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/system-ca/test-native-root-certs-env.mjs:30:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " \"https://localhost:50302/hello-world\",\n errno: 0,\n code: \"UNABLE_TO_VERIFY_LEAF_SIGNATURE\"\n\n at async (/test/system-ca/test-native-root-certs-env.mjs:50:11)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) use-system-ca > trusts a valid root certificate [68.46ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [194.00ms]", "retried": true }, "deno": { @@ -165318,7 +165021,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | assert.fail(`Unexpected path: ${path}`);\n26 | }\n27 | };\n28 | \n29 | describe('use-system-ca', function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/system-ca/test-native-root-certs.mjs:29:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "th: \"https://localhost:50314/hello-world\",\n errno: 0,\n code: \"UNABLE_TO_VERIFY_LEAF_SIGNATURE\"\n\n at async (/test/system-ca/test-native-root-certs.mjs:49:11)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) use-system-ca > trusts a valid root certificate [630.35ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [756.00ms]", "retried": true }, "deno": { @@ -165355,7 +165058,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "TypeError: undefined is not an object (evaluating 'err.cause.code')\n at (/test/system-ca/test-set-default-ca-certificates-append-system-ca.mjs:35:28)\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n\nBun v1.4.0 (macOS arm64)", + "tail": "E_TO_VERIFY_LEAF_SIGNATURE');\n ^\nTypeError: undefined is not an object (evaluating 'err.cause.code')\n at (/test/system-ca/test-set-default-ca-certificates-append-system-ca.mjs:35:28)\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165446,7 +165149,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "27 | default:\n28 | common.mustNotCall(`Unexpected path: ${path}`)();\n29 | }\n30 | };\n31 | \n32 | describe('use-system-ca', function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/system-ca/test-use-system-ca-worker-disable.mjs:32:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "localhost:50322/hello-world\",\n errno: 0,\n code: \"UNABLE_TO_VERIFY_LEAF_SIGNATURE\"\n\n at async (/test/system-ca/test-use-system-ca-worker-disable.mjs:59:11)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) use-system-ca > trusts a valid root certificate [1030.95ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [1123.00ms]", "retried": true }, "deno": { @@ -165483,7 +165186,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tNotCall(`Unexpected path: ${path}`)();\n29 | }\n30 | };\n31 | \n32 | describe('use-system-ca', function() {\n ^\nerror: Cannot use describe outside of the test runner. Run \"bun test\" to run tests.\n at addSuite (node:test:1695:13)\n at /test/system-ca/test-use-system-ca-worker-enable.mjs:32:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " at expectsError (node:assert:393:20)\n at assert.rejects (node:assert:432:17)\n at async (/test/system-ca/test-use-system-ca-worker-enable.mjs:59:18)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) use-system-ca > trusts a valid root certificate [117.84ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [334.00ms]", "retried": true }, "deno": { @@ -165516,7 +165219,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t ok 1 - test 1\\n ---\\n duration_ms: *\\n type: 'test'\\n location: '/test/fixtures/test-runner/output/abort_hooks.js:56:3'\\n failureType: 'hookFailed'\\n error: 'This operation was aborted'\\n code: 20\\n name: 'AbortError'\\n stack: |-\\n \\n afterEach.signal (/test/fixtures/test-runner/output/ab", + "tail": "EST_FAILURE'\\n ...\\n1..4\\n# tests 8\\n# suites 4\\n# pass 2\\n# fail 4\\n# cancelled 2\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -165580,7 +165283,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 9\\n# suites 2\\n# pass 4\\n# fail 0\\n# cancelled 5\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165613,7 +165316,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\\n\" +\n- ' stack: |-\\n' +\n- ' \\n' +\n- ' Object. (/test/fixtures/test-runner/output/abort.js:39:53)\\n' +\n- ' \\n' +\n- ' ...\\n' +\n- '1..4\\n' +\n- '# tests 22\\n' +\n- '# suites 0\\n' +\n- '# pass 8\\n' +\n- '# fail 0\\n' +\n- '# cancelled 14\\n' +\n- '# skipped 0\\n' +\n- '# todo 0\\n' +\n- '# duration_ms *\\n'", + "tail": " tests 22\\n# suites 0\\n# pass 8\\n# fail 0\\n# cancelled 14\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165708,7 +165411,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "^\nTypeError: undefined is not an object (evaluating 'env')\n at getColorDepth (internal:tty:57:24)\n at canColorize (/test/common/assertSnapshot.js:310:34)\n at /test/test-runner/test-output-assertion-color-tty.mjs:8:6\n\nBun v1.4.0 (macOS arm64)", + "tail": "E_COLOR' env being set.`, \"Warning\"), warned = !0;\n56 | }\n57 | let FORCE_COLOR = env.FORCE_COLOR;\n ^\nTypeError: undefined is not an object (evaluating 'env')\n at getColorDepth (internal:tty:57:24)\n at canColorize (/test/common/assertSnapshot.js:310:34)\n at /test/test-runner/test-output-assertion-color-tty.mjs:8:6\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165768,7 +165471,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " tests 11\\n# suites 0\\n# pass 11\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165797,7 +165500,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": " tests 11\\n# suites 0\\n# pass 11\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166047,7 +165750,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eError: undefined is not an object (evaluating 'env')\n at getColorDepth (internal:tty:57:24)\n at canColorize (/test/common/assertSnapshot.js:310:34)\n at /test/test-runner/test-output-coverage-width-80-color.mjs:12:6\n\nBun v1.4.0 (macOS arm64)", + "tail": "OR' env being set.`, \"Warning\"), warned = !0;\n56 | }\n57 | let FORCE_COLOR = env.FORCE_COLOR;\n ^\nTypeError: undefined is not an object (evaluating 'env')\n at getColorDepth (internal:tty:57:24)\n at canColorize (/test/common/assertSnapshot.js:310:34)\n at /test/test-runner/test-output-coverage-width-80-color.mjs:12:6\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166076,7 +165779,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d is not an object (evaluating 'env')\n at getColorDepth (internal:tty:57:24)\n at canColorize (/test/common/assertSnapshot.js:310:34)\n at /test/test-runner/test-output-coverage-width-80-uncovered-lines-color.mjs:12:6\n\nBun v1.4.0 (macOS arm64)", + "tail": "t.`, \"Warning\"), warned = !0;\n56 | }\n57 | let FORCE_COLOR = env.FORCE_COLOR;\n ^\nTypeError: undefined is not an object (evaluating 'env')\n at getColorDepth (internal:tty:57:24)\n at canColorize (/test/common/assertSnapshot.js:310:34)\n at /test/test-runner/test-output-coverage-width-80-uncovered-lines-color.mjs:12:6\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166332,7 +166035,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "7 - callback t is this in test\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '# Subtest: callback also returns a Promise\\n' +\n- 'not ok 48 - callback also returns a Promise\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- \" location: '/test/fixtures/test-runner/output/describe_it.j\"... 11937 more characters", + "tail": "sts 73\\n# suites 11\\n# pass 35\\n# fail 19\\n# cancelled 4\\n# skipped 10\\n# todo 5\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166363,7 +166066,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 1\\n# suites 2\\n# pass 1\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166423,7 +166126,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "le'\\n }\\n✖ invalid subtest fail (*ms)\\n 'test could not be started because its parent finished'\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166454,7 +166157,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "/fixtures/test-runner/output/eval_dot.js:3:1), :6:11)\\n at \\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166485,7 +166188,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "fixtures/test-runner/output/eval_spec.js:3:1), :6:11)\\n at \\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166516,7 +166219,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 2\\n# suites 0\\n# pass 1\\n# fail 1\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166578,7 +166281,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e: 'test'\\n ...\\n1..6\\n# tests 14\\n# suites 10\\n# pass 14\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)", + "tail": "tests 14\\n# suites 10\\n# pass 14\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166640,7 +166343,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "nℹ tests 2\\nℹ suites 0\\nℹ pass 2\\nℹ fail 0\\nℹ cancelled 0\\nℹ skipped 0\\nℹ todo 0\\nℹ duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166702,7 +166405,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 0\\n# suites 0\\n# pass 0\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166762,7 +166465,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 4\\n# suites 2\\n# pass 4\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166791,7 +166494,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".js:89:1'\\n failureType: 'hookFailed'\\n error: 'after'\\n code: 'ERR_TEST_FAILURE'\\n stack: |-\\n SuiteContext. (/test/fixtures/test-runner/output/hooks.js:90:23)\\n \\n ...\\n# Subtest: beforeEach throws\\n # Subtest: 1\\n not ok 1 - 1\\n ---\\n duration_ms: *\\n type: 'test'\\n location: '/test/fixtures/test-r", + "tail": "ests 52\\n# suites 12\\n# pass 22\\n# fail 27\\n# cancelled 3\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166890,7 +166593,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 1\\n# suites 0\\n# pass 1\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166950,7 +166653,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "tests 18\\n# suites 12\\n# pass 14\\n# fail 0\\n# cancelled 0\\n# skipped 2\\n# todo 2\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -166981,7 +166684,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 2\\n# suites 0\\n# pass 2\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167334,7 +167037,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 3\\n# suites 2\\n# pass 1\\n# fail 0\\n# cancelled 0\\n# skipped 2\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167553,7 +167256,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 4\\n# suites 0\\n# pass 2\\n# fail 0\\n# cancelled 0\\n# skipped 1\\n# todo 1\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167613,7 +167316,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "EST_FAILURE'\\n ...\\n1..1\\n# tests 6\\n# suites 1\\n# pass 2\\n# fail 3\\n# cancelled 1\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)", + "tail": "n# tests 6\\n# suites 1\\n# pass 2\\n# fail 3\\n# cancelled 1\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167644,7 +167347,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " tests 18\\n# suites 1\\n# pass 14\\n# fail 4\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "e: 'test'\\n ...\\n1..12\\n# tests 18\\n# suites 1\\n# pass 14\\n# fail 4\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -167706,7 +167409,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 5\\n# suites 2\\n# pass 2\\n# fail 0\\n# cancelled 3\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167737,7 +167440,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", + "tail": "n# tests 5\\n# suites 2\\n# pass 2\\n# fail 0\\n# cancelled 3\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertSnapshot (/test/common/assertSnapshot.js:173:12)\n at spawnAndAssert (/test/common/assertSnapshot.js:208:9)\n at processTicksAndRejections (native:7:39)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167890,7 +167593,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "h: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd-isolation-none-argv.mjs:22:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "e }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd-isolation-none-argv.mjs:22:16\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [108.00ms]", "retried": true }, "deno": { @@ -167923,7 +167626,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " watch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd-isolation-none.mjs:11:16\n\nBun v1.4.0 (macOS arm64)", + "tail": " stream = run({\n ^\nNotImplementedError: run({ watch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd-isolation-none.mjs:11:16\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -167952,7 +167655,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd-isolation-process.mjs:22:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "rue }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd-isolation-process.mjs:22:16\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [126.00ms]", "retried": true }, "deno": { @@ -167981,7 +167684,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tedError: run({ watch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd.mjs:11:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "r();\n11 | const stream = run({\n ^\nNotImplementedError: run({ watch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-cwd.mjs:11:16\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -168196,7 +167899,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "un({ watch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-emit-restarted.mjs:19:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "atch: true }) is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Use `bun:test --watch` in the interim.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:213:24)\n at /test/test-runner/test-run-watch-emit-restarted.mjs:19:16\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [230.00ms]", "retried": true }, "deno": { @@ -168256,7 +167959,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "le discovery is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Pass { files: [...] } explicitly.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:235:24)\n at /test/test-runner/test-run-watch-no-emit-restarted-disabled.mjs:12:16\n\nBun v1.4.0 (macOS arm64)", + "tail": "covery is not yet implemented in Bun. Track the status & thumbs up the issue: https://github.com/oven-sh/bun/issues/5090. Pass { files: [...] } explicitly.\n code: \"ERR_NOT_IMPLEMENTED\"\n\n at run (node:test:235:24)\n at /test/test-runner/test-run-watch-no-emit-restarted-disabled.mjs:12:16\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [156.00ms]", "retried": true }, "deno": { @@ -168849,7 +168552,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " of the test runner. Run \"bun test\" to run tests.\n at addTest (node:test:1653:9)\n at (/test/test426/test-source-map-spec.mjs:22:3)\n at forEach (1:11)\n at /test/test426/test-source-map-spec.mjs:18:12\n\nBun v1.4.0 (macOS arm64)", + "tail": "ssertionError: false == true\n generatedMessage: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/test426/test-source-map-spec.mjs:30:14\n at run (node:async_hooks:99:29)\n at node:test:1445:26\n at executeTestNode (node:test:1448:45)\n at node:test:1591:20\n(fail) validMappingLargeVLQ [1.85ms]", "retried": true }, "deno": { @@ -168909,7 +168612,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ss 42295]: --- stdout ---\n\n[process 42295]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js cant_dotdot\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "corpus>/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26556]: --- stdout ---\n\n[process 26556]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js cant_dotdot\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -168938,7 +168641,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s 42299]: --- stdout ---\n\n[process 42299]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js clock_getres\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26557]: --- stdout ---\n\n[process 26557]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js clock_getres\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -168967,7 +168670,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 42345]: --- stdout ---\n\n[process 42345]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js exitcode\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": " (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26561]: --- stdout ---\n\n[process 26561]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js exitcode\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -168996,7 +168699,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "--- stdout ---\n\n[process 42330]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js fd_prestat_get_refresh\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "t/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26562]: --- stdout ---\n\n[process 26562]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js fd_prestat_get_refresh\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169025,7 +168728,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cess 42364]: --- stdout ---\n\n[process 42364]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js ftruncate\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "(/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26563]: --- stdout ---\n\n[process 26563]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js ftruncate\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169054,7 +168757,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ess 42438]: --- stdout ---\n\n[process 42438]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js getentropy\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26567]: --- stdout ---\n\n[process 26567]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js getentropy\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169083,7 +168786,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cess 42460]: --- stdout ---\n\n[process 42460]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js getrusage\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "(/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26568]: --- stdout ---\n\n[process 26568]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js getrusage\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169112,7 +168815,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s 42492]: --- stdout ---\n\n[process 42492]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js gettimeofday\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "orpus>/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26569]: --- stdout ---\n\n[process 26569]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js gettimeofday\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169141,7 +168844,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nitialize-validation.js:17:20)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/wasi/test-wasi-initialize-validation.js:16:12)\n at (/test/wasi/test-wasi-initialize-validation.js:153:3)", + "tail": "is not a function. (In 'wasi.initialize()', 'wasi.initialize' is undefined)\n at (/test/wasi/test-wasi-initialize-validation.js:17:20)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/wasi/test-wasi-initialize-validation.js:16:12)\n at (/test/wasi/test-wasi-initialize-validation.js:153:3)", "retried": true }, "deno": { @@ -169170,7 +168873,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 42538]: --- stdout ---\n\n[process 42538]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js freopen\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26573]: --- stdout ---\n\n[process 26573]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js freopen\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169199,7 +168902,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cess 42523]: --- stdout ---\n\n[process 42523]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js main_args\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "(/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26575]: --- stdout ---\n\n[process 26575]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js main_args\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169228,7 +168931,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasi/test-wasi-not-started.js:38:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " });\n37 | assert.strictEqual(child.signal, null);\n38 | assert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasi/test-wasi-not-started.js:38:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169257,7 +168960,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process 42580]: --- stdout ---\n\n[process 42580]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js notdir\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "s> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26580]: --- stdout ---\n\n[process 26580]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js notdir\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169286,7 +168989,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n message: /\\bargs\\b/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasi/test-wasi-options-validation.js:11:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "WASI({ version: 'preview1', args: 'fhqwhgads' }); },\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_INVALID_ARG_TYPE\",\n message: /\\bargs\\b/,\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasi/test-wasi-options-validation.js:11:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169315,7 +169018,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n[process 42812]: --- stdout ---\n\n[process 42812]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js poll\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ous> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26583]: --- stdout ---\n\n[process 26583]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js poll\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169344,7 +169047,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "10]: --- stdout ---\n\n[process 42610]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js preopen_populates\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": ">/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26585]: --- stdout ---\n\n[process 26585]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js preopen_populates\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169373,7 +169076,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 42741]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js --target=wasm32-wasip1-threads pthread\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26586]: --- stdout ---\n\n[process 26586]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js --target=wasm32-wasip1-threads pthread\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169402,7 +169105,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 42634]: --- stdout ---\n\n[process 42634]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js readdir\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26588]: --- stdout ---\n\n[process 26588]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js readdir\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169431,7 +169134,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n[process 42648]: --- stdout ---\n\n[process 42648]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js sock\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ous> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26591]: --- stdout ---\n\n[process 26591]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js sock\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169460,7 +169163,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "asi/test-wasi-start-validation.js:17:20)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/wasi/test-wasi-start-validation.js:16:12)\n at (/test/wasi/test-wasi-start-validation.js:150:3)", + "tail": "ror: undefined is not an object (evaluating 'instance')\n at start (node:wasi:1023:32)\n at (/test/wasi/test-wasi-start-validation.js:17:20)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/wasi/test-wasi-start-validation.js:16:12)\n at (/test/wasi/test-wasi-start-validation.js:150:3)", "retried": true }, "deno": { @@ -169489,7 +169192,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n[process 42679]: --- stdout ---\n\n[process 42679]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js stat\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ous> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26594]: --- stdout ---\n\n[process 26594]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js stat\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169518,7 +169221,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | assert.strictEqual(wasi.start(instance), 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\nundefined !== 0\n\n generatedMessage: true,\n actual: undefined,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasi/test-wasi-stdio.js:27:10", + "tail": " = await WebAssembly.instantiate(buffer, importObject);\n26 | \n27 | assert.strictEqual(wasi.start(instance), 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\nundefined !== 0\n\n generatedMessage: true,\n actual: undefined,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasi/test-wasi-stdio.js:27:10", "retried": true }, "deno": { @@ -169547,7 +169250,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ssage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at runWASI (/test/wasi/test-wasi-symlinks.js:76:12)\n at /test/wasi/test-wasi-symlinks.js:81:3\n\nBun v1.4.0 (macOS arm64)", + "tail": "ert.strictEqual(child.status, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n\n1 !== 0\n\n generatedMessage: true,\n actual: 1,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at runWASI (/test/wasi/test-wasi-symlinks.js:76:12)\n at /test/wasi/test-wasi-symlinks.js:81:3\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169605,7 +169308,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ess 42732]: --- stdout ---\n\n[process 42732]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js write_file\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 26600]: --- stdout ---\n\n[process 26600]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --turbo-fast-api-calls /test/fixtures/wasi-preview-1.js write_file\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169634,7 +169337,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "mum: 100 });\n10 | \n11 | // Test memory64 works too.\n12 | new WebAssembly.Memory({ address: 'i64', initial: 10n, maximum: 100n });\n ^\nTypeError: WebAssembly.Memory 'address' of 'i64' requires Memory64 to be enabled\n at (/test/wasm-allocation/test-wasm-allocation-auto-adapt.js:12:1)\n\nBun v1.4.0 (macOS arm64)", + "tail": "re('../common');\n 9 | new WebAssembly.Memory({ initial: 10, maximum: 100 });\n10 | \n11 | // Test memory64 works too.\n12 | new WebAssembly.Memory({ address: 'i64', initial: 10n, maximum: 100n });\n ^\nTypeError: WebAssembly.Memory 'address' of 'i64' requires Memory64 to be enabled\n at (/test/wasm-allocation/test-wasm-allocation-auto-adapt.js:12:1)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169663,7 +169366,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "++) {\n19 | instances.push(new WebAssembly.Memory({ initial: 10n, maximum: 100n, address: 'i64' }));\n ^\nTypeError: WebAssembly.Memory 'address' of 'i64' requires Memory64 to be enabled\n at (/test/wasm-allocation/test-wasm-allocation-disable-trap-handler.js:19:18)\n\nBun v1.4.0 (macOS arm64)", + "tail": "\n17 | // Test memory64 works too.\n18 | for (let i = 0; i < 30; i++) {\n19 | instances.push(new WebAssembly.Memory({ initial: 10n, maximum: 100n, address: 'i64' }));\n ^\nTypeError: WebAssembly.Memory 'address' of 'i64' requires Memory64 to be enabled\n at (/test/wasm-allocation/test-wasm-allocation-disable-trap-handler.js:19:18)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169696,7 +169399,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "location should succeed.\n12 | const first = new WebAssembly.Memory({ address: 'i64', initial: 10n, maximum: 100n });\n ^\nTypeError: WebAssembly.Memory 'address' of 'i64' requires Memory64 to be enabled\n at (/test/wasm-allocation/test-wasm-allocation-memory64.js:12:15)\n\nBun v1.4.0 (macOS arm64)", + "tail": "Thread } = require('worker_threads');\n10 | \n11 | // The first allocation should succeed.\n12 | const first = new WebAssembly.Memory({ address: 'i64', initial: 10n, maximum: 100n });\n ^\nTypeError: WebAssembly.Memory 'address' of 'i64' requires Memory64 to be enabled\n at (/test/wasm-allocation/test-wasm-allocation-memory64.js:12:15)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169733,7 +169436,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: /WebAssembly\\.Memory/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasm-allocation/test-wasm-allocation.js:22:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "y fail due to running out of\n21 | // virtual address space.\n22 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: /WebAssembly\\.Memory/,\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/wasm-allocation/test-wasm-allocation.js:22:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -169857,7 +169560,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "}`);\n ^\nerror: Found 1 unexpected passes. Consider updating test/wpt/status/webmessaging/broadcastchannel.json for these files:\nbasics.any.js:messages are delivered in port creation order\n at (/test/common/wpt.js:852:87)", + "tail": "updating ${file} for these files:\\n${unexpectedPasses.join('\\n')}`);\n ^\nerror: Found 1 unexpected passes. Consider updating test/wpt/status/webmessaging/broadcastchannel.json for these files:\nbasics.any.js:messages are delivered in port creation order\n at (/test/common/wpt.js:852:87)", "retried": true }, "deno": { @@ -169919,7 +169622,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/console.json for these files:\nconsole-is-a-namespace.any.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "xpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/console.json for these files:\nconsole-is-a-namespace.any.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -169950,7 +169653,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\\n${failures.join('\\n')}`);\n ^\nerror: Found 3 unexpected failures. Consider updating test/wpt/status/encoding.json for these files:\nidlharness.any.js\nencodeInto.any.js\nstreams/backpressure.any.js\n at (/test/common/wpt.js:846:79)", + "tail": " ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 3 unexpected failures. Consider updating test/wpt/status/encoding.json for these files:\nidlharness.any.js\nstreams/backpressure.any.js\nencodeInto.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -169981,7 +169684,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "er updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/dom/events.json for these files:\nEvent-constructors.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "ailures.length} unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/dom/events.json for these files:\nEvent-constructors.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170012,7 +169715,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "er updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/FileAPI/file.json for these files:\nFile-constructor.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "ailures.length} unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/FileAPI/file.json for these files:\nFile-constructor.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170043,7 +169746,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/hr-time.cjs for these files:\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", + "tail": " `Found ${failures.length} unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/hr-time.cjs for these files:\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170103,7 +169806,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "('\\n')}`);\n ^\nerror: Found 3 unexpected failures. Consider updating test/wpt/status/performance-timeline.json for these files:\nsupportedEntryTypes.any.js\nidlharness.any.js\ncase-sensitivity.any.js\n at (/test/common/wpt.js:846:79)", + "tail": " `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 3 unexpected failures. Consider updating test/wpt/status/performance-timeline.json for these files:\nsupportedEntryTypes.any.js\ncase-sensitivity.any.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170134,7 +169837,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/resource-timing.json for these files:\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "${failures.length} unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 1 unexpected failures. Consider updating test/wpt/status/resource-timing.json for these files:\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170256,7 +169959,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nerror: Found 6 unexpected failures. Consider updating test/wpt/status/url.cjs for these files:\nurl-setters.any.js\nurl-constructor.any.js\nurlencoded-parser.any.js\ntoascii.window.js\nIdnaTestV2.any.js\nurl-origin.any.js\n at (/test/common/wpt.js:846:79)", + "tail": " these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 6 unexpected failures. Consider updating test/wpt/status/url.cjs for these files:\nurl-constructor.any.js\nurl-setters.any.js\nurlencoded-parser.any.js\ntoascii.window.js\nIdnaTestV2.any.js\nurl-origin.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170322,7 +170025,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/user-timing.json for these files:\nmeasure_syntax_err.any.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "xpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/user-timing.json for these files:\nmeasure_syntax_err.any.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170353,7 +170056,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "any.js\nesm-integration/string-constants.tentative.any.js\nesm-integration/mutable-global-sharing.tentative.any.js\nesm-integration/source-phase.tentative.any.js\nesm-integration/js-wasm-cycle.tentative.any.js\nmodule/moduleSource.tentative.any.js\ninstance/constructor-caching.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "rt-wasm-export.tentative.any.js\nesm-integration/exports.tentative.any.js\nesm-integration/global-exports.tentative.any.js\nesm-integration/mutable-global-sharing.tentative.any.js\nesm-integration/source-phase.tentative.any.js\nesm-integration/js-wasm-cycle.tentative.any.js\nmodule/moduleSource.tentative.any.js\ninstance/constructor-caching.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170446,7 +170149,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ify/ecdsa.https.any.js\nencrypt_decrypt/aes_cbc.https.any.js\nencrypt_decrypt/aes_gcm.https.any.js\nencrypt_decrypt/aes_ctr.https.any.js\nencrypt_decrypt/aes_gcm_256_iv.https.any.js\nencrypt_decrypt/rsa_oaep.https.any.js\nsupports-modern.tentative.https.any.js\nidlharness.https.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "s.https.any.js\nsign_verify/mldsa.tentative.https.any.js\nsign_verify/ecdsa.https.any.js\nencrypt_decrypt/aes_cbc.https.any.js\nencrypt_decrypt/aes_gcm.https.any.js\nencrypt_decrypt/aes_ctr.https.any.js\nsupports-modern.tentative.https.any.js\nencrypt_decrypt/aes_gcm_256_iv.https.any.js\nencrypt_decrypt/rsa_oaep.https.any.js\nidlharness.https.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170481,7 +170184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "binding/global-object-implicit-this-value.any.js\necmascript-binding/es-exceptions/DOMException-custom-bindings.any.js\necmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.js\necmascript-binding/es-exceptions/DOMException-is-error.any.js\necmascript-binding/class-string-named-properties-object.window.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "binding/global-object-implicit-this-value.any.js\necmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.js\necmascript-binding/es-exceptions/DOMException-custom-bindings.any.js\necmascript-binding/es-exceptions/DOMException-is-error.any.js\necmascript-binding/class-string-named-properties-object.window.js\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { diff --git a/tests/cross-runtime/run.mjs b/tests/cross-runtime/run.mjs index df5a945f1..9276224ad 100644 --- a/tests/cross-runtime/run.mjs +++ b/tests/cross-runtime/run.mjs @@ -72,7 +72,11 @@ const CORPUS_NODE_VERSION = (() => { try { const h = fs.readFileSync(path.join(SUITE, "src/node_version.h"), "utf8"); const n = (k) => h.match(new RegExp(`#define NODE_${k}_VERSION (\\d+)`))[1]; - return `${n("MAJOR")}.${n("MINOR")}.${n("PATCH")}`; + // A nightly checkout carries the NEXT version's numbers with the release + // flag off; without the suffix it stamps as a clean release and a corpus + // drift reads as a version bump in the committed meta. + const nightly = /#define NODE_VERSION_IS_RELEASE 0/.test(h) ? "-nightly" : ""; + return `${n("MAJOR")}.${n("MINOR")}.${n("PATCH")}${nightly}`; } catch { return "?"; } })(); const PTY_SPAWN = path.join(HERE, "pty-spawn.py"); @@ -400,7 +404,39 @@ function buildPlainCommand(runtime, relPath, source, serialId) { // --allow-natives-syntax and a bogus flag). So bun gets the same `// Flags:` // tokens node gets, the same way. An earlier revision passed none, which // cost bun tests that only work with their flag (e.g. --expose-gc). - const env = { ...baseEnv, NODE_OPTIONS: "", ...extraEnv }; + // + // node:test files run under `bun test`: bun's node:test registers tests + // only inside its test runner ("Cannot use describe outside of the test + // runner" as a plain script, where real node runs the same file + // standalone). Bun's own CI runner (scripts/runner.node.mjs) detects + // node:test sources and switches to `bun test`, and this harness already + // grants deno the equivalent (`deno test` below), so bun gets the same + // accommodation. The one exception, copied from bun's runner: a file that + // only DRIVES node:test's run() is the parent of the run, not a test file + // — under `bun test` it registers nothing and exits before run() finishes. + // Two sharp edges, both measured on bun 1.4.x: the path must be ABSOLUTE + // (`bun test ` is a name filter that silently matches nothing), + // and the per-test --timeout must be passed (default 5s is tighter than + // the harness budget). BUN_TEST_DRAIN_EVENT_LOOP mirrors bun-CI's node + // parity: node exits only when the event loop drains, and common.mustCall + // verifies its counts in 'exit' handlers. + const env = { ...baseEnv, NODE_OPTIONS: "", BUN_TEST_DRAIN_EVENT_LOOP: "1", ...extraEnv }; + if (usesNodeTest(source)) { + const importsRun = + /\brun\b[^\n]*=\s*require\(['"]node:test['"]\)/.test(source) || + /import\s*{[^}]*\brun\b[^}]*}\s*from\s*['"]node:test['"]/.test(source); + const registersAtColumnZero = /^(?:test|it|describe|suite)\s*[.(]/m.test(source); + const registersTests = /(?:^|[^.\w])(?:test|it|describe|suite)\s*[.(]/m.test(source); + const isRunDriver = importsRun && !registersAtColumnZero && (!registersTests || source.includes("NODE_TEST_CONTEXT")); + if (!isRunDriver) { + // The same `// Flags:` tokens ride along: `bun test` skips an + // unrecognized long flag rather than erroring (probed with a passing + // control plus a bogus flag), so the flagged node:test files keep + // the treatment the plain path gives them. + const args = ["test", `--timeout=${timeoutFor(relPath)}`, ...nodeFlagArgs(tokens), path.join(SUITE, testPath)]; + return { bin: BINS[runtime], args, env }; + } + } return { bin: BINS[runtime], args: [...nodeFlagArgs(tokens), testPath], env }; } @@ -654,6 +690,19 @@ async function main() { } const mergeArg = argValue("--merge"); const prior = mergeArg ? JSON.parse(fs.readFileSync(mergeArg, "utf8")) : null; + if (prior) { + // A composite results file is one measurement over one tree. Merging a run + // from a different corpus checkout silently mixes verdicts measured on + // different sources — the exact contamination this refuses (a drifted + // submodule once merged nightly-corpus bun verdicts into a v26.7.0 file, + // leaving 174 stale carry-overs). Restore the corpus, or start a fresh + // --out instead of merging. + const currentCommit = fs.existsSync(path.join(SUITE, ".git")) ? capture("git rev-parse HEAD", SUITE) : null; + const priorCommit = prior.meta?.corpusCommit ?? null; + if (priorCommit && currentCommit && priorCommit !== currentCommit) { + throw new Error(`--merge: corpus mismatch — prior verdicts were measured on ${priorCommit}, this checkout is at ${currentCommit}`); + } + } if (Number.isFinite(limit)) runList = runList.slice(0, limit); // Preload sources once. diff --git a/wiki/research/node-test-suite-leverage.md b/wiki/research/node-test-suite-leverage.md index 2d7968e1d..5f2351a7f 100644 --- a/wiki/research/node-test-suite-leverage.md +++ b/wiki/research/node-test-suite-leverage.md @@ -158,7 +158,7 @@ The harness in `tests/cross-runtime/` runs the whole Node 26.7.0 test suite from The headline facts, with the lens named each time because the lens is most of the number: -- Node-relative to Node 26.7.0, under Deno's own directory set and skip list: nub 98.1%, deno 74.2%, bun 68.1%; under the bun.com universe (`parallel/` + `sequential/`, nothing skipped): nub 97.9%, deno 71.8%, bun 69.8%; over every executable directory with nothing skipped, including `pseudo-tty/` under a real pty, `ffi/` with its fixture compiled and Node's `wpt/` wrappers: nub 97.1%, deno 68.1%, bun 63.8%. Dropping the 718-test engine-specific class (V8 internals, natives syntax, snapshots, inspector protocol, tracing, V8 error text — `tests/cross-runtime/engine-specific.txt`) moves bun and deno up by 4–7 points and nub by none. +- Node-relative to Node 26.7.0, under Deno's own directory set and skip list: nub 98.5%, deno 74.2%, bun 70.1%; under the bun.com universe (`parallel/` + `sequential/`, nothing skipped): nub 98.2%, deno 71.7%, bun 71.8%; over every executable directory with nothing skipped, including `pseudo-tty/` under a real pty, `ffi/` with its fixture compiled and Node's `wpt/` wrappers: nub 97.4%, deno 68.1%, bun 65.6%. Dropping the 718-test engine-specific class (V8 internals, natives syntax, snapshots, inspector protocol, tracing, V8 error text — `tests/cross-runtime/engine-specific.txt`) moves bun and deno up by 4–7 points and nub by none. - Node itself passes 99.1% of its own suite on the measuring host once the harness runs it the way Node's runner does (pseudo-terminal + `.out` comparison for `pseudo-tty/`, the compiled `ffi/` fixture, a full checkout so `doc/`, `deps/npm` and `benchmark/` resolve); the 49 residual failures are the system CA store, the network, reporter snapshots and load. - Version skew is real and large: Node 25.9.0 passes 89.6% of what Node 26.7.0 passes on the 26.7.0 corpus (bun lens), but 94.7% on the 26.3.0 corpus. Any comparison across corpus versions carries that much noise, so the corpus version is part of every published figure. - How the other two trackers count, stated for comparability: Deno's viewer scores passes over the collected tests minus its `ignore`/platform-`false` entries and counts a `flaky` retry as a pass; bun.com's tracker marks a test passing when a file of that name exists in Bun's repository and runs nothing. The harness's `denoExclusions` and `bunUniverse` lenses reproduce those two denominators on verbatim runs. @@ -175,3 +175,4 @@ Every revision to this document, with the date and what changed. - 2026-08-22 — Added §8: the harness now measures the Node 26.7.0 corpus under named lenses (Deno's, bun.com's, full, engine-specific-excluded) with a symmetric retry pass; bun now receives `// Flags:`; the Rust gate passes flags with `NODE_SKIP_FLAG_CHECK=1` and its config grew from 2,554 to 5,279 entries regenerated from the run; Node 25 vs 26 version skew measured (89.6% on 26.7.0, 94.7% on 26.3.0). Same day: the corpus moved from a bare `test/` tree to a full checkout, `pseudo-tty/` runs under a pty with `.out` judging, `ffi/` gets its compiled fixture and `wpt/` is enumerated — Node's own pass rate on the host went from 97.9% to 99.1%. - 2026-08-24 — §5.1: the submodule is now `update = none` in `.gitmodules` so recursive clones (Vercel site builds) skip it; corpus consumers pass `--checkout`. - 2026-08-28 — Trimmed to the measured findings and current behavior. +- 2026-08-30 — Refreshed the headline lens figures from the regenerated results: a `node:test` file now runs under `bun test` (mirroring the `deno test` treatment, and bun's own runner), so bun's numbers rose across every lens (68.1 → 70.1 on Deno's lens); nub's reflect the intervening resolver fixes.