From 4358a7ad22b4ef3d9dd694ffb71e70f023c5caf3 Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 17:57:21 -0700 Subject: [PATCH 1/9] cross-runtime: run node:test files under bun test, matching the deno test treatment bun's node:test registers tests only inside its runner, so a node:test file run as a plain script errors where node runs the same file standalone; deno already got the equivalent switch to deno test. Also set BUN_TEST_DRAIN_EVENT_LOOP=1 so bun drains the event loop before exit the way node does. Remeasured bun 1.4.0 over the corpus: 161 verdicts flip to pass, 20 flip to fail (those had exited 0 before their 'exit'-handler assertions ran). Regenerates the README tables and updates the homepage and blog compat figures from the merged results. --- site/content/blog/introducing-nub.mdx | 2 +- site/src/app/(home)/page.tsx | 2 +- tests/cross-runtime/README.md | 18 +- tests/cross-runtime/results.json | 5692 ++++++++++++------------- tests/cross-runtime/run.mjs | 30 +- 5 files changed, 2664 insertions(+), 3080 deletions(-) diff --git a/site/content/blog/introducing-nub.mdx b/site/content/blog/introducing-nub.mdx index b707dd86e..5033a61bb 100644 --- a/site/content/blog/introducing-nub.mdx +++ b/site/content/blog/introducing-nub.mdx @@ -33,7 +33,7 @@ Bun and Deno proved there's enormous appetite for an all-in-one toolkit that rep ## Introducing Nub -Nub embraces it instead. It's a single Rust binary that transpiles your code and executes it on the stock `node` your project pins — so the runtime underneath *is* Node. On Node 26.7's own test suite, scored the way Deno's compatibility corpus scores it, it clears 98.5% of what real Node passes, versus 74.2% for Deno 2.9 and 68.1% for Bun 1.4. It combines: +Nub embraces it instead. It's a single Rust binary that transpiles your code and executes it on the stock `node` your project pins — so the runtime underneath *is* Node. On Node 26.7's own test suite, scored the way Deno's compatibility corpus scores it, it clears 98.5% of what real Node passes, versus 74.2% for Deno 2.9 and 70.7% for Bun 1.4. It combines: ```console $ nub index.ts # file runner — full TypeScript, on stock Node diff --git a/site/src/app/(home)/page.tsx b/site/src/app/(home)/page.tsx index ec5d60333..cd0f42052 100644 --- a/site/src/app/(home)/page.tsx +++ b/site/src/app/(home)/page.tsx @@ -955,7 +955,7 @@ const COMPAT = [ { name: 'Node 26.7', rate: 100, tests: '5,046 / 5,046', us: false, dim: false }, { name: 'Nub', rate: 98.5, tests: '4,968 / 5,046', us: true, dim: false }, { name: 'Deno 2.9', rate: 74.2, tests: '3,742 / 5,046', us: false, dim: true }, - { name: 'Bun 1.4', rate: 68.1, tests: '3,438 / 5,046', us: false, dim: true }, + { name: 'Bun 1.4', rate: 70.7, tests: '3,570 / 5,046', us: false, dim: true }, ]; function Compatibility() { diff --git a/tests/cross-runtime/README.md b/tests/cross-runtime/README.md index ce0b1e9c4..2a882615b 100644 --- a/tests/cross-runtime/README.md +++ b/tests/cross-runtime/README.md @@ -1,6 +1,6 @@ # Cross-runtime Node-compatibility benchmark -This harness runs Node's own test suite — the whole `test/` tree of a Node release, the same corpus Deno vendors as [`denoland/node_test`](https://github.com/denoland/node_test) — identically against `node`, `nub`, `bun`, and `deno`, and reports pass rates per runtime under several explicit scoring lenses. Nobody curates the file list: every runtime runs the same files, with the same flags, under the same pass criterion, and every runtime's failures are published by name in `results.json`. +This harness runs Node's own test suite — the whole `test/` tree of a Node release, the same corpus Deno vendors as [`denoland/node_test`](https://github.com/denoland/node_test) — identically against `node`, `nub`, `bun`, and `deno`, and reports pass rates per runtime under several explicit scoring lenses. Nobody curates the file list: every runtime runs the same files, with the same flags, under the same pass criterion, and every runtime's failures are published by name in `results.json`. One accommodation is symmetric by design: a `node:test`-based file runs under each runtime's own test mode where it needs one (`deno test`, `bun test`) — Node runs those files as plain scripts, Deno and Bun register their tests only inside their runners, and both runtimes' own compat suites make the same switch. ## What's pinned (so it reproduces forever) @@ -23,7 +23,7 @@ This harness runs Node's own test suite — the whole `test/` tree of a Node rel The nub binary is a release build of `main` at `e78a6701dd` plus the `NODE_OPTIONS` coverage-exclude change committed beside this results file. This table and the results table below are generated from `results.json` by [`readme-table.mjs`](./readme-table.mjs). -macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 4 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. +macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 4 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`): 161 files flipped to pass and 20 flipped to fail — the latter had been exiting 0 before their `'exit'`-handler assertions ran. ## Reproduce it yourself @@ -80,12 +80,12 @@ Node-relative pass rate (raw in parentheses). The rows are generated from `resul | 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.75% (70.44) | 90.15% (89.62) | +| `bunUniverse` | 4,760 / 4,736 | **98.16%** (97.67) | 71.75% (71.49) | 72.68% (72.44) | 89.55% (89.12) | +| `fullCorpus` | 5,664 / 5,616 | **97.40%** (96.61) | 68.07% (67.67) | 66.33% (65.96) | 89.96% (89.23) | +| `fullCorpusNoEngine` | 4,946 / 4,904 | **97.37%** (96.58) | 71.66% (71.25) | 72.21% (71.82) | 90.03% (89.30) | +| `bunUniverseNoEngine` | 4,111 / 4,091 | **98.22%** (97.74) | 76.04% (75.80) | 79.93% (79.69) | 89.54% (89.13) | +| `engineSpecificOnly` | 718 / 712 | **97.61%** (96.80) | 43.40% (43.04) | 25.84% (25.63) | 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). @@ -123,7 +123,7 @@ A regenerated `results.json` is only half the update. The published figures are 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/results.json b/tests/cross-runtime/results.json index 28bac2b92..1f57db010 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-31T00:54:18.576Z", "platform": "darwin", "corpus": "", - "corpusNodeVersion": "26.7.0", - "corpusCommit": "b4f23d3619c98bed09af93a21192f6080197a8c6", + "corpusNodeVersion": "27.0.0", + "corpusCommit": "cebe4248aff54f6420fd24a8bb7884e5a452e955", "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" @@ -28,7 +28,7 @@ "version": "v25.9.0" } }, - "eligibleFiles": 5664, + "eligibleFiles": 5490, "ignoredOrSkipped": 448, "includeExcluded": true, "denominator": 5664, @@ -38,6 +38,10 @@ "retryFailures": true, "mergeRetryFailures": true, "retried": { + "bun": { + "retried": 1929, + "flippedToPass": 1 + }, "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": 3736, + "fail": 1928, + "timeout": 123, + "pct": 65.96 + }, { "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": 3570, + "pct": 70.75, + "rawPass": 3577, + "rawPct": 70.44 + }, { "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": 3442, + "pct": 72.68, + "rawPass": 3448, + "rawPct": 72.44 + }, { "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": 3725, + "pct": 66.33, + "rawPass": 3736, + "rawPct": 65.96 + }, { "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": 3541, + "pct": 72.21, + "rawPass": 3552, + "rawPct": 71.82 + }, { "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": 3270, + "pct": 79.93, + "rawPass": 3276, + "rawPct": 79.69 + }, { "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": 184, + "pct": 25.84, + "rawPass": 184, + "rawPct": 25.63 + }, { "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": 125, + "pct": 28.87, + "rawPass": 129, + "rawPct": 28.79 + }, { "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": 47, + "pct": 67.14, + "rawPass": 47, + "rawPct": 67.14 + }, { "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": 79, + "pct": 32.92, + "rawPass": 79, + "rawPct": 32.64 + }, { "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": 3373, + "pct": 73.04, + "rawPass": 3379, + "rawPct": 72.81 + }, { "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": 69, + "pct": 58.47, + "rawPass": 69, + "rawPct": 57.98 + }, { "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", @@ -1701,7 +1457,6 @@ "client-proxy/test-http-set-global-proxy-from-env-fetch.mjs", "client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs", "client-proxy/test-https-proxy-fetch.mjs", - "client-proxy/test-https-proxy-request-auth-failure.mjs", "client-proxy/test-https-proxy-request-empty-response.mjs", "client-proxy/test-https-proxy-request-malformed-response.mjs", "client-proxy/test-https-proxy-request-proxy-failure-404.mjs", @@ -1717,10 +1472,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 +1485,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 +1537,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 +1549,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", @@ -1855,6 +1605,7 @@ "es-module/test-require-module-errors.js", "es-module/test-require-module-feature-detect.js", "es-module/test-require-module-implicit.js", + "es-module/test-require-module-instantiated.mjs", "es-module/test-require-module-preload.js", "es-module/test-require-module-retry-import-errored.js", "es-module/test-require-module-retry-import-evaluating.js", @@ -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", @@ -2151,11 +1891,9 @@ "parallel/test-crypto-domain.js", "parallel/test-crypto-domains.js", "parallel/test-crypto-encap-decap.js", - "parallel/test-crypto-encoding-validation-error.js", "parallel/test-crypto-hash-stream-error.js", "parallel/test-crypto-job-error-parity.js", "parallel/test-crypto-key-objects-messageport.js", - "parallel/test-crypto-key-objects-to-crypto-key.js", "parallel/test-crypto-key-objects.js", "parallel/test-crypto-keyobject-hidden-slots.js", "parallel/test-crypto-sec-level.js", @@ -2232,7 +1970,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", @@ -2259,7 +1996,6 @@ "parallel/test-diagnostics-channel-process.js", "parallel/test-diagnostics-channel-run-stores-scope-transform-error.js", "parallel/test-diagnostics-channel-run-stores-scope.js", - "parallel/test-diagnostics-channel-symbol-named.js", "parallel/test-diagnostics-channel-sync-unsubscribe.js", "parallel/test-diagnostics-channel-tracing-channel-args-types.js", "parallel/test-diagnostics-channel-tracing-channel-callback-early-exit.js", @@ -2276,7 +2012,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 +2091,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 +2102,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 +2119,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,7 +2138,6 @@ "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", @@ -2416,7 +2145,6 @@ "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 +2156,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", @@ -2457,37 +2183,47 @@ "parallel/test-heapsnapshot-near-heap-limit-worker.js", "parallel/test-http-agent-domain-reused-gc.js", "parallel/test-http-agent-free-socket-data-guard.js", + "parallel/test-http-blank-header.js", + "parallel/test-http-client-headers-array.js", "parallel/test-http-client-highwatermark.js", "parallel/test-http-client-immediate-error.js", "parallel/test-http-client-leaky-with-double-response.js", "parallel/test-http-connect-default-host-header.js", + "parallel/test-http-content-length.js", "parallel/test-http-dump-req-when-res-ends.js", "parallel/test-http-header-overflow.js", + "parallel/test-http-keep-alive-max-requests.js", + "parallel/test-http-keep-alive-pipeline-max-requests.js", "parallel/test-http-localaddress.js", "parallel/test-http-max-headers-count-overflow.js", "parallel/test-http-max-http-headers.js", - "parallel/test-http-outgoing-end-multiple.js", - "parallel/test-http-outgoing-writableFinished.js", + "parallel/test-http-multiple-headers.js", + "parallel/test-http-outgoing-proto.js", "parallel/test-http-parser-bad-ref.js", "parallel/test-http-parser-lazy-loaded.js", "parallel/test-http-parser-timeout-reset.js", - "parallel/test-http-perf_hooks.js", "parallel/test-http-raw-headers.js", + "parallel/test-http-remove-header-stays-removed.js", "parallel/test-http-req-close-robust-from-tampering.js", - "parallel/test-http-request-signal.js", "parallel/test-http-response-cork.js", "parallel/test-http-same-map.js", "parallel/test-http-server-close-idle-connections-pre-request.js", "parallel/test-http-server-connections-checking-leak.js", + "parallel/test-http-server-keep-alive-defaults.js", + "parallel/test-http-server-keep-alive-max-requests-null.js", "parallel/test-http-server-keepalive-req-gc.js", "parallel/test-http-server-multiple-client-error.js", "parallel/test-http-server-unconsume.js", + "parallel/test-http-upgrade-agent.js", + "parallel/test-http-upgrade-client.js", + "parallel/test-http-upgrade-server-with-body-and-extras.mjs", "parallel/test-http2-allow-http1-upgrade-ws.js", "parallel/test-http2-binding.js", "parallel/test-http2-client-destroy.js", "parallel/test-http2-client-http1-server.js", "parallel/test-http2-client-onconnect-errors.js", "parallel/test-http2-client-socket-destroy.js", + "parallel/test-http2-compat-serverrequest-trailers.js", "parallel/test-http2-connect-options.js", "parallel/test-http2-create-client-secure-session.js", "parallel/test-http2-debug.js", @@ -2517,7 +2253,6 @@ "parallel/test-http2-util-nghttp2error.js", "parallel/test-http2-util-update-options-buffer.js", "parallel/test-https-agent-checkserveridentity-reuse.js", - "parallel/test-https-agent-getname.js", "parallel/test-https-agent-keylog.js", "parallel/test-https-agent-pfx-object-array-reuse.js", "parallel/test-https-localaddress.js", @@ -2615,7 +2350,6 @@ "parallel/test-internal-util-normalizeencoding.js", "parallel/test-internal-util-objects.js", "parallel/test-internal-util-weakreference.js", - "parallel/test-internal-validators-validateport.js", "parallel/test-internal-webidl-buffer-source.js", "parallel/test-internal-webidl-converttoint.js", "parallel/test-internal-webidl.js", @@ -2627,7 +2361,6 @@ "parallel/test-memory-usage.js", "parallel/test-messageport-hasref.js", "parallel/test-messaging-marktransfermode.js", - "parallel/test-mime-api.js", "parallel/test-module-circular-dependency-warning.js", "parallel/test-module-loading-deprecated.js", "parallel/test-module-loading-globalpaths.js", @@ -2640,11 +2373,9 @@ "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", - "parallel/test-net-connect-options-invalid.js", "parallel/test-net-end-close.js", "parallel/test-net-keepalive-interval-count.js", "parallel/test-net-listen-twice.js", @@ -2652,7 +2383,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", @@ -2767,7 +2497,7 @@ "parallel/test-process-execve-permission-fail.js", "parallel/test-process-execve-validation.js", "parallel/test-process-exit-code-validation.js", - "parallel/test-process-finalization.mjs", + "parallel/test-process-features.js", "parallel/test-process-get-builtin.mjs", "parallel/test-process-getactivehandles.js", "parallel/test-process-getactiverequests.js", @@ -2781,12 +2511,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", @@ -2801,33 +2529,22 @@ "parallel/test-punycode.js", "parallel/test-quic-alpn-mismatch.mjs", "parallel/test-quic-certificate-compression.mjs", - "parallel/test-quic-diagnostics-channel-path.mjs", - "parallel/test-quic-h3-settings.mjs", - "parallel/test-quic-internal-endpoint-stats-state.mjs", - "parallel/test-quic-internal-setcallbacks.mjs", "parallel/test-quic-list-endpoints.mjs", "parallel/test-quic-multipacket-clienthello.mjs", "parallel/test-quic-reject-unauthorized.mjs", + "parallel/test-quic-session-close-error-code.mjs", "parallel/test-quic-session-emit-ordering.mjs", "parallel/test-quic-session-unobserved-error-close.mjs", - "parallel/test-quic-sni-mismatch.mjs", - "parallel/test-quic-stream-bidi-writer.mjs", "parallel/test-quic-stream-body-pooled-buffer.mjs", - "parallel/test-quic-stream-destroy-emits-stop-sending.mjs", + "parallel/test-quic-stream-destroy-emits-reset.mjs", + "parallel/test-quic-stream-destroy-options-code.mjs", "parallel/test-quic-stream-read-after-blocked.mjs", "parallel/test-quic-stream-stop-sending-callback.mjs", - "parallel/test-quic-stream-uni-basic.mjs", - "parallel/test-quic-stream-uni-server-initiated.mjs", - "parallel/test-quic-stream-writer-api.mjs", - "parallel/test-quic-stream-writer-dispose.mjs", + "parallel/test-quic-stream-writer-fail-error-code.mjs", "parallel/test-quic-version-negotiation-oversized-cid.mjs", - "parallel/test-quic-writer-backpressure.mjs", - "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", @@ -2846,12 +2563,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 +2579,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 +2591,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,19 +2599,15 @@ "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", @@ -2910,11 +2617,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 +2628,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 +2680,10 @@ "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", @@ -3010,33 +2693,8 @@ "parallel/test-stdout-close-unref.js", "parallel/test-stream-base-prototype-accessors-enumerability.js", "parallel/test-stream-destroy.js", - "parallel/test-stream-iter-broadcast-backpressure.js", - "parallel/test-stream-iter-broadcast-basic.js", - "parallel/test-stream-iter-broadcast-coverage.js", - "parallel/test-stream-iter-broadcast-from.js", - "parallel/test-stream-iter-consumers-bytes.js", - "parallel/test-stream-iter-consumers-merge.js", - "parallel/test-stream-iter-duplex.js", - "parallel/test-stream-iter-from-async.js", - "parallel/test-stream-iter-from-sync.js", - "parallel/test-stream-iter-pipeto-signal.js", - "parallel/test-stream-iter-pipeto-writev.js", - "parallel/test-stream-iter-pipeto.js", - "parallel/test-stream-iter-pull-async.js", - "parallel/test-stream-iter-push-backpressure.js", - "parallel/test-stream-iter-push-basic.js", - "parallel/test-stream-iter-push-writer.js", - "parallel/test-stream-iter-share-async.js", - "parallel/test-stream-iter-share-from.js", - "parallel/test-stream-iter-sharedarraybuffer.js", - "parallel/test-stream-iter-transform-output.js", - "parallel/test-stream-iter-validation.js", - "parallel/test-stream-iter-writable-from.js", - "parallel/test-stream-iter-writable-interop.js", "parallel/test-stream-pipe-multiple-destinations-error.js", - "parallel/test-stream-pipeline.js", "parallel/test-stream-readable-async-iter-half-open-duplex.js", - "parallel/test-stream-readable-setEncoding-existing-buffers.js", "parallel/test-stream-wrap-drain.js", "parallel/test-stream-wrap-encoding.js", "parallel/test-stream-wrap.js", @@ -3062,7 +2720,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", @@ -3070,9 +2727,7 @@ "parallel/test-tls-async-cb-after-socket-end.js", "parallel/test-tls-cert-ext-encoding.js", "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", @@ -3093,7 +2748,6 @@ "parallel/test-tls-ocsp-callback.js", "parallel/test-tls-off-thread-cert-loading-system.js", "parallel/test-tls-off-thread-cert-loading.js", - "parallel/test-tls-over-http-tunnel.js", "parallel/test-tls-psk-errors.js", "parallel/test-tls-reinitialize-listeners.js", "parallel/test-tls-server-setkeycert.js", @@ -3114,18 +2768,11 @@ "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", "parallel/test-urlpattern-types.js", - "parallel/test-urlpattern.js", "parallel/test-util-callbackify.js", "parallel/test-util-deprecate.js", "parallel/test-util-emit-experimental-warning.js", @@ -3135,15 +2782,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 +2909,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", @@ -3286,17 +2924,12 @@ "parallel/test-webapi-sharedarraybuffer-rejection.js", "parallel/test-webcrypto-crypto-job-mode.js", "parallel/test-webcrypto-cryptokey-brand-check.js", - "parallel/test-webcrypto-derivekey-ecdh.js", "parallel/test-webcrypto-digest-turboshake-rfc.js", "parallel/test-webcrypto-digest-turboshake.js", - "parallel/test-webcrypto-encap-decap-ml-kem.js", - "parallel/test-webcrypto-export-import.js", - "parallel/test-webcrypto-get-public-key.mjs", "parallel/test-webcrypto-keygen.js", "parallel/test-webcrypto-promise-prototype-pollution.mjs", "parallel/test-webcrypto-random.js", "parallel/test-webcrypto-raw-format-aliases.js", - "parallel/test-webcrypto-sign-verify-eddsa.js", "parallel/test-webcrypto-sign-verify-rsa.js", "parallel/test-webcrypto-supports.mjs", "parallel/test-webcrypto-util.js", @@ -3308,19 +2941,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 +2977,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,17 +3019,10 @@ "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", "pseudo-tty/test-assert-colors.js", "pseudo-tty/test-async-wrap-getasyncid-tty.js", @@ -3472,14 +3090,12 @@ "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", "sequential/test-cpu-prof-dir-worker.js", "sequential/test-cpu-prof-worker-argv.js", "sequential/test-crypto-timing-safe-equal-fast.js", - "sequential/test-debug-prompt.js", "sequential/test-debugger-custom-port.js", "sequential/test-debugger-debug-brk.js", "sequential/test-debugger-invalid-args.js", @@ -3509,7 +3125,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 +3294,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 +7821,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 +7852,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 +7881,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 +7937,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 +8026,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 +8055,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 +8113,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": "\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-32060.js:26:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", "retried": true }, "deno": { @@ -8285,7 +8144,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": " (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)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -8316,7 +8175,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": "fined,\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.js:24:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", "retried": true }, "deno": { @@ -8347,7 +8206,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 +8374,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 +8403,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 +8434,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 +8739,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 +8770,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 +8801,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 +8832,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 +8863,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 +8894,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 +8954,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 +9043,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 +9103,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 +9194,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 +9225,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 +9380,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 +9411,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 +9442,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 +9471,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 +9502,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 +9533,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 +9601,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 +9663,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 +9692,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 +9723,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 +9754,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 +9783,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 +9845,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 +9876,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 +9907,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 +10000,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 +10087,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 +10116,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 +10178,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 +10240,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 +10271,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 +10302,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 +10333,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 +10364,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 +10395,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 +10457,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 +10488,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 +10517,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 +10548,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 +10579,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 +10637,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 +10668,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 +10726,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 +10846,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 +10877,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 +10908,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": " },\n+ method: 'GET',\n+ url: 'http://localhost:50889/test'\n- method: 'CONNECT',\n- url: 'localhost:50889'\n }\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-http-proxy-fetch.mjs:42:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11619,7 +11478,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 +11648,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": " url: 'http://localhost:50968/test'\n- method: 'CONNECT',\n- url: 'localhost:50968'\n }\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-http-set-global-proxy-from-env-fetch-default.mjs:35:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11849,7 +11708,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:50983'\n- },\n- method: 'CONNECT',\n- url: 'localhost:50983'\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 +11766,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": "ion: 'close',\n- host: 'localhost:50992'\n- },\n- method: 'CONNECT',\n- url: 'localhost:50992'\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:35:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -11940,7 +11799,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": " connection: 'close',\n- host: 'localhost:50991'\n- },\n- method: 'CONNECT',\n- url: 'localhost:50991'\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:34:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -12189,7 +12048,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:51021'\n+ },\n+ method: 'GET',\n+ url: 'http://localhost:51021/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 +12108,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:51028'\n },\n method: 'CONNECT',\n url: 'localhost:51028'\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": { @@ -12277,11 +12136,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -12340,7 +12197,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 +12442,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 +12527,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 +12556,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 +12585,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 +12614,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 +12643,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 +12807,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:51123'\n- },\n- method: 'GET',\n- url: 'http://localhost:51123/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 +12840,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:51127'\n- },\n- method: 'CONNECT',\n- url: 'localhost:51127'\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 +12871,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 +12900,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.81ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [48.00ms]", "retried": true }, "deno": { @@ -13076,7 +12933,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 [19.21ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [65.00ms]", "retried": true }, "deno": { @@ -13107,7 +12964,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. [23.00ms]", "retried": true }, "deno": { @@ -13281,7 +13138,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": { @@ -13450,11 +13307,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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 + "exit": 0 }, "deno": { "pass": true, @@ -13482,7 +13337,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 [11.25ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [56.00ms]", "retried": true }, "deno": { @@ -13511,7 +13366,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": "sTicksAndRejections (native:7:39)\n(fail) ESM: Errors for unexpected exports > should NOT include note [11.10ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [10.59ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [10.45ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [9.86ms]\n\n 5 pass\n 5 fail\nRan 10 tests across 1 file. [131.00ms]", "retried": true }, "deno": { @@ -13539,11 +13394,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 +13455,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 next-app 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 +13513,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 +13573,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 +13608,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 +13666,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 +13697,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 +13728,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 +13759,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 +13876,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 +13935,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 +13991,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 [10.52ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [49.00ms]", "retried": true }, "deno": { @@ -14171,7 +14022,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 [9.72ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [45.00ms]", "retried": true }, "deno": { @@ -14200,7 +14051,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 +14082,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 +14113,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 [10.70ms]\n\n 2 pass\n 4 fail\nRan 6 tests across 1 file. [99.00ms]", "retried": true }, "deno": { @@ -14293,7 +14144,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.37ms]\n(pass) extensionless Wasm within no package scope > should run on import [0.16ms]\n\n 6 pass\n 4 fail\nRan 10 tests across 1 file. [88.00ms]", "retried": true }, "deno": { @@ -14324,7 +14175,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 +14233,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 +14347,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": { @@ -14624,7 +14475,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 +14506,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.33ms]\n(pass) import modules using --import > should import a module with top level await [21.62ms]\n(pass) import modules using --import > should import files sequentially [21.97ms]\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. [171.00ms]", "retried": true }, "deno": { @@ -14686,7 +14537,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 [13.99ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [38.00ms]", "retried": true }, "deno": { @@ -14717,7 +14568,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. [99.00ms]", "retried": true }, "deno": { @@ -14841,7 +14692,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": { @@ -14940,7 +14791,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 +14822,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 +14853,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 +14882,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 +14911,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.28ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [31.00ms]", "retried": true }, "deno": { @@ -15091,7 +14942,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 +14973,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.56ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -15153,7 +15004,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 +15035,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 [5.03ms]\n\n 3 pass\n 1 fail\nRan 4 tests across 1 file. [40.00ms]", "retried": true }, "deno": { @@ -15213,7 +15064,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 +15122,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 [5.27ms]", "retried": true }, "deno": { @@ -15331,7 +15182,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.14ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [63.00ms]", "retried": true }, "deno": { @@ -15389,7 +15240,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.75ms]\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. [75.00ms]", "retried": true }, "deno": { @@ -15447,7 +15298,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 [5.11ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [45.00ms]", "retried": true }, "deno": { @@ -15536,7 +15387,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 +15418,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 +15449,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.56ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -15629,7 +15480,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 [5.45ms]", "retried": true }, "deno": { @@ -15660,7 +15511,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 +15542,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 +15573,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.71ms]", "retried": true }, "deno": { @@ -15782,7 +15633,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) [8.47ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [52.00ms]", "retried": true }, "deno": { @@ -15842,7 +15693,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 [13.44ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [40.00ms]", "retried": true }, "deno": { @@ -15929,7 +15780,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 +15813,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 [8.12ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [92.00ms]", "retried": true }, "deno": { @@ -16024,7 +15875,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 +15933,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 > [11.94ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [35.00ms]", "retried": true }, "deno": { @@ -16110,11 +15961,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, @@ -16491,7 +16340,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 [19.18ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [87.00ms]", "retried": true }, "deno": { @@ -16580,7 +16429,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 +16541,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 [8.19ms]\n\n 1 pass\n 3 fail\nRan 4 tests across 1 file. [63.00ms]", "retried": true }, "deno": { @@ -16722,11 +16571,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 +16657,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 +16807,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 +16838,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": "s required by esm [11.55ms]\n(pass) esm source-map > should not extract source map urlinside string from esm imported by esm [12.62ms]\n(pass) esm source-map > should not extract source map urlinside string from cjs imported by esm [12.19ms]\n(pass) esm source-map > should not extract source map urlinside string from cjs required by esm [11.12ms]\n\n 4 pass\n 4 fail\nRan 8 tests across 1 file. [129.00ms]", "retried": true }, "deno": { @@ -17107,7 +16954,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 [14.26ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [41.00ms]", "retried": true }, "deno": { @@ -17163,7 +17010,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.99ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [476.00ms]", "retried": true }, "deno": { @@ -17192,9 +17039,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 +17099,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. [2.65ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -17364,7 +17211,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt:383:14)\n at assert.rejects (node:assert:432:17)\nAssertionError: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: /use the '\\.cjs' file extension/,\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)", + "tail": " at assert.rejects (node:assert:432:17)\nAssertionError: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: /exports is not defined in ES module scope$/,\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": { @@ -17395,7 +17242,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.73ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [53.00ms]", "retried": true }, "deno": { @@ -17484,7 +17331,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 +17362,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 77360]: --- stdout ---\n\n[process 77360]: 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 +17391,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": " at /test/fixtures/es-modules/test-wasm-globals-all-types.mjs:15:3\n\nBun v1.4.0 (macOS arm64)\n\n[process 77362]: --- stdout ---\n\n[process 77362]: 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 +17422,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 77363]: --- stdout ---\n\n[process 77363]: 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 +17453,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": "rt named 'add' not found in module '/test/fixtures/es-modules/simple.wasm'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 77365]: --- stdout ---\n\n[process 77365]: 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 +17482,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": "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 77366]: --- stdout ---\n\n[process 77366]: 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 +17513,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 77376]: --- stdout ---\n\n[process 77376]: 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 +17542,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": "corpus>/test/fixtures/es-modules/test-wasm-non-identifier-exports.mjs:5:1\n\nBun v1.4.0 (macOS arm64)\n\n[process 77379]: --- stdout ---\n\n[process 77379]: 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 +17571,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 77378]: --- stderr ---\n\n[process 77378]: --- stdout ---\n\n[process 77378]: 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 +17602,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 77382]: --- stderr ---\n\n[process 77382]: --- stdout ---\n\n[process 77382]: 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 +17633,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 77383]: --- stderr ---\n\n[process 77383]: --- stdout ---\n\n[process 77383]: 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 +17664,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 77391]: --- stderr ---\n\n[process 77391]: --- stdout ---\n\n[process 77391]: 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 +17695,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 77393]: --- stderr ---\n\n[process 77393]: --- stdout ---\n\n[process 77393]: 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 +17726,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": "nd \"mod\"\n at /test/fixtures/es-modules/wasm-source-phase.js:1:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 77396]: --- stdout ---\n\n[process 77396]: 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 +17755,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": "/test/fixtures/es-modules/test-wasm-source-phase-identity.mjs:4:55\n\nBun v1.4.0 (macOS arm64)\n\n[process 77397]: --- stdout ---\n\n[process 77397]: 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 +17784,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": "es/es-modules/test-wasm-source-phase-no-execute-dynamic.mjs:6:37\n\nBun v1.4.0 (macOS arm64)\n\n[process 77398]: --- stdout ---\n\n[process 77398]: 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 +17815,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": "pus>/test/fixtures/es-modules/test-wasm-source-phase-no-execute.mjs:5:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 77406]: --- stdout ---\n\n[process 77406]: 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 +17844,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-modules/test-wasm-source-phase-not-defined-dynamic.mjs:12:3\n\nBun v1.4.0 (macOS arm64)\n\n[process 77411]: --- stdout ---\n\n[process 77411]: 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 +17906,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": "und \"mod\"\n at /test/fixtures/es-modules/wasm-source-phase.js:1:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 77412]: --- stdout ---\n\n[process 77412]: 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 +17935,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": "s (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 77413]: --- stdout ---\n\n[process 77413]: 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 +17966,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 77415]: --- stdout ---\n\n[process 77415]: 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 +17997,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": "(node:vm:229:52)\n\nBun v1.4.0 (macOS arm64)\n\n[process 77422]: --- stdout ---\n\n[process 77422]: 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 +18055,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 77425]: --- stderr ---\n\n[process 77425]: --- stdout ---\nscript STARTED\nv26.3.0\n\n[process 77425]: 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 +18171,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": "/import-require-cycle/preload.mjs:3:5\n\nBun v1.4.0 (macOS arm64)\n\n[process 77437]: --- stdout ---\n\n[process 77437]: 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 +18200,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": ")\n\nBun v1.4.0 (macOS arm64)\n\n[process 77438]: --- stdout ---\n\n[process 77438]: 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 +18231,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 +18289,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 [11.64ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [178.00ms]", "retried": true }, "deno": { @@ -18473,7 +18320,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 +18349,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": "ess 77446]: --- stdout ---\n\n[process 77446]: 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": { @@ -18533,7 +18380,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "');\n6 | \n7 | (async () => {\n8 | await import('../fixtures/es-modules/tla/resolved.mjs');\n9 | 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-cached-tla.js:9:10", + "tail": " | await import('../fixtures/es-modules/tla/resolved.mjs');\n9 | 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-cached-tla.js:9:10", "retried": true }, "deno": { @@ -18564,7 +18411,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 +18496,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 77459]: --- stderr ---\n\n[process 77459]: --- stdout ---\n\n[process 77459]: 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 +18527,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": "ocess 77461]: --- stderr ---\n\n[process 77461]: --- stdout ---\nrequire a.mjs in b.cjs undefined\nimport b.cjs from a.mjs {}\n\n[process 77461]: 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 +18558,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 77463]: --- stderr ---\n\n[process 77463]: --- stdout ---\n\n[process 77463]: 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 +18620,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 +18732,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 +18761,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 +18792,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 +18877,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 +18908,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 +18939,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 77491]: --- stderr ---\n\n[process 77491]: --- stdout ---\ntrue\n\n[process 77491]: 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 +18970,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": { @@ -19151,16 +18998,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0, - "retried": true, - "firstAttempt": { - "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)" - } + "exit": 1, + "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)", + "retried": true }, "deno": { "pass": true, @@ -19188,7 +19030,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": "s-modules/exports-cases2.js'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 77499]: --- stdout ---\n\n[process 77499]: 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 +19090,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": { @@ -19403,7 +19245,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 77495]: --- stderr ---\nI am executed\n\n[process 77495]: --- stdout ---\n\n[process 77495]: 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": { @@ -19467,7 +19309,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:983:12)\n at /test/es-module/test-require-module-tla-nested.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-nested.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:952:12)\n at /test/es-module/test-require-module-tla-nested.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-nested.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19498,7 +19340,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 77501]: --- stderr ---\nI am executed\n\n[process 77501]: --- stdout ---\n\n[process 77501]: 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": { @@ -19531,7 +19373,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:983:12)\n at /test/es-module/test-require-module-tla-rejected.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-rejected.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:952:12)\n at /test/es-module/test-require-module-tla-rejected.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-rejected.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19562,7 +19404,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 +19435,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 +19464,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 +19493,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": { @@ -19680,7 +19522,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:983:12)\n at /test/es-module/test-require-module-tla-unresolved.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-unresolved.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:952:12)\n at /test/es-module/test-require-module-tla-unresolved.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-unresolved.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19738,7 +19580,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 +19613,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 +19671,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 +19704,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 77543]: --- stderr ---\n\n[process 77543]: --- stdout ---\nworld\n\n[process 77543]: 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 +19817,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 +19963,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.387/index.js?t=1'", "retried": true }, "deno": { @@ -20154,7 +19994,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 +20050,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 +20520,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 +20607,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 +20756,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 +20785,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 +20872,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 +20901,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 +20959,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 +21042,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 +21243,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 +21280,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 +21578,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 +21642,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 +21677,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": "s-module-loaders/hooks-input.mjs\"\n\n[process 77683]: --- stdout ---\n\n[process 77683]: 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 +21741,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": "s/loader-globalpreload-and-initialize.mjs\"\n\n[process 77687]: --- stdout ---\n\n[process 77687]: 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 +21801,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": "err ---\n\n[process 77719]: --- stdout ---\nresult 1 undefined\nresult 2 undefined\n\n[process 77719]: 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 +21832,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": "rs/hooks-initialize.mjs\"\n\n[process 77723]: --- stdout ---\n\n[process 77723]: 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 +21863,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 77724]: --- stderr ---\n\n[process 77724]: --- stdout ---\n\n[process 77724]: 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 +21894,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": "oader-initialize-exit.mjs\"\n\n[process 77727]: --- stdout ---\n\n[process 77727]: 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 +21925,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": "loader-initialize-rejecting.mjs\"\n\n[process 77729]: --- stdout ---\n\n[process 77729]: 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 +21956,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": "rs/loader-initialize-throw-null.mjs\"\n\n[process 77731]: --- stdout ---\n\n[process 77731]: 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 +21987,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": "corpus>/test/fixtures/es-module-loaders/loader-mixed-opt-in.mjs\"\n\n[process 77733]: --- stdout ---\n\n[process 77733]: 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 +22018,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": "ocess 77762]: 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 +22049,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 77763]: 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 +22080,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": "tdout ---\n\n[process 77766]: 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 +22111,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": " 77795]: --- stdout ---\n\n[process 77795]: 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 +22142,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 77797]: 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 +22171,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 77799]: 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 +22200,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": "out ---\n\n[process 77802]: 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 +22231,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": "ut ---\n\n[process 77804]: 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 +22262,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": "806]: --- stdout ---\n\n[process 77806]: 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 +22293,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": "tures/es-module-loaders/loader-edge-cases.mjs\"\n\n[process 77835]: --- stdout ---\n\n[process 77835]: 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 +22324,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": "rs/loader-exit-on-load.mjs\"\n\n[process 77837]: --- stdout ---\n\n[process 77837]: 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 +22355,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 77839]: 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 +22386,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": "module-loaders/loader-exit-top-level.mjs\"\n\n[process 77841]: --- stdout ---\n\n[process 77841]: 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 +22417,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 +22448,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 77844]: --- stderr ---\n\n[process 77844]: --- stdout ---\n\n[process 77844]: 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 +22510,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 77848]: --- stderr ---\n\n[process 77848]: --- stdout ---\n\n[process 77848]: 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 +22603,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": "s/loader-resolve-passthru.mjs\"\n\n[process 77854]: --- stdout ---\n\n[process 77854]: 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 +22665,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": " arm64)\n\n[process 77859]: --- stdout ---\n\n[process 77859]: 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 +22696,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": "pus>/test/fixtures/es-module-loaders/loader-throw-bigint.mjs\"\n\n[process 77861]: --- stdout ---\n\n[process 77861]: 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 +22727,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 77862]: --- stdout ---\n\n[process 77862]: 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 +22758,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": "res/es-module-loaders/loader-throw-empty-object.mjs\"\n\n[process 77865]: --- stdout ---\n\n[process 77865]: 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 +22789,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": "s/es-module-loaders/loader-throw-error.mjs\"\n\n[process 77867]: --- stdout ---\n\n[process 77867]: 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 +22820,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": "odule-loaders/loader-throw-function.mjs\"\n\n[process 77868]: --- stdout ---\n\n[process 77868]: 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 +22851,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": "rpus>/test/fixtures/es-module-loaders/loader-throw-null.mjs\"\n\n[process 77871]: --- stdout ---\n\n[process 77871]: 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 +22882,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": "pus>/test/fixtures/es-module-loaders/loader-throw-number.mjs\"\n\n[process 77873]: --- stdout ---\n\n[process 77873]: 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 +22913,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": "rocess 77874]: --- stdout ---\n\n[process 77874]: 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 +22944,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": "tures/es-module-loaders/loader-throw-string.mjs\"\n\n[process 77877]: --- stdout ---\n\n[process 77877]: 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 +23004,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": "ures/es-module-loaders/loader-throw-undefined.mjs\"\n\n[process 77880]: --- stdout ---\n\n[process 77880]: 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 +23035,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 77883]: 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 +23066,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": "t ---\n\n[process 77884]: 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 +23095,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 77885]: 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 +23126,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": "rocess 77890]: --- stdout ---\n\n[process 77890]: 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 +23157,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 +23215,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 +23246,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": { @@ -23530,7 +23370,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": "7897]: 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 +23401,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 +23585,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 +23643,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 +23701,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 +23730,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 +23817,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 +23850,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 +23879,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 +23908,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 +23937,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 +23966,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 +23995,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 +24053,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 +24082,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": "/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)\n\n[process 77974]: --- stdout ---\n\n[process 77974]: 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 +24144,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 +24359,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 +24417,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 +24446,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 +24475,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 +24628,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 +24657,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 +24686,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 +24715,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 +24744,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 +24773,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 +24802,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 +24831,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 +24860,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 +24889,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 +24920,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 +24949,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 +24978,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 +25007,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 +25036,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 +25065,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.54ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [9.03s]", "retried": true }, "deno": { @@ -25254,7 +25094,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 +25125,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.26ms]\n(pass) Setting a long timeout should not keep the process open [0.06ms]\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.06ms]\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 +25156,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 [6.09ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [36.00ms]", "retried": true }, "deno": { @@ -25347,7 +25187,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.55ms]\n(pass) AbortSignal.any() > executes abort handlers in correct order [0.07ms]\n(pass) AbortSignal.any() > must accept WebIDL sequence [0.12ms]\n(pass) AbortSignal.any() > throws TypeError if any value does not implement AbortSignal [0.16ms]\n\n 12 pass\n 1 fail\nRan 13 tests across 1 file. [37.00ms]", "retried": true }, "deno": { @@ -25380,7 +25220,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.09ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [28.00ms]", "retried": true }, "deno": { @@ -25411,7 +25251,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 [20.30ms]\n\n 1 pass\n 5 fail\nRan 6 tests across 1 file. [101.00ms]", "retried": true }, "deno": { @@ -25444,7 +25284,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": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-accessor-properties.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/test/binding\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [28.00ms]", "retried": true }, "deno": { @@ -25526,11 +25366,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 +25420,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 +25449,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 +25476,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 +25503,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 +25533,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:214:10)\n at /test/parallel/test-assert-deep.js:739: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 [0.71ms]", "retried": true }, "deno": { @@ -25733,11 +25563,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 +25590,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 +25620,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 [3.44ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [31.00ms]", "retried": true }, "deno": { @@ -25820,11 +25646,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 +25676,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 +25705,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.04ms]\n(pass) Object Comparison Tests > partialDeepStrictEqual > throws an error > throws when comparing two dataviews with different buffers [0.04ms]\n(pass) Object Comparison Tests > partialDeepStrictEqual > throws an error > throws because expected Uint8Array(SharedArrayBuffer) is not a subset of actual [0.03ms]", "retried": true }, "deno": { @@ -25907,11 +25731,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 +25761,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": "d: /foo/,\n operator: \"doesNotMatch\",\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:1743: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) Faulty message functions [0.15ms]", "retried": true }, "deno": { @@ -25972,7 +25794,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 +25854,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 +25910,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 +25941,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 +25970,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 +26001,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 +26030,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 +26061,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 +26121,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 +26152,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 +26210,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 +26239,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 +26268,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 +26388,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 +26417,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 +26448,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 +26479,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 +26680,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 +27035,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 +27207,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 +27238,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 +27327,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 +27358,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 +27389,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 +27472,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 +27557,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 +27615,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": { @@ -27851,7 +27673,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "19 | 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-blob.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17:5)\n at (/test/parallel/test-blob.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27913,7 +27735,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": { @@ -27944,7 +27766,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ntentional, remove them from `expected.atRunTime`.\n\n--- These could be removed from expected.atRunTime ---\n[\n 'NativeModule internal/process/pre_execution'\n]\n\n\n10 !== 0\n\n generatedMessage: false,\n actual: 10,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-bootstrap-modules.js:268:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ntentional, remove them from `expected.atRunTime`.\n\n--- These could be removed from expected.atRunTime ---\n[\n 'NativeModule internal/process/pre_execution'\n]\n\n\n10 !== 0\n\n generatedMessage: false,\n actual: 10,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-bootstrap-modules.js:264:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28087,7 +27909,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 +27992,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 +28185,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 +28214,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 +28243,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 +28272,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 78349]: --- stderr ---\n\n[process 78349]: --- stdout ---\n\n[process 78349]: 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 +28301,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 +28467,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 +28523,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 +28579,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 +28992,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 +29180,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 +29345,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 +29428,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 +29538,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 +29928,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. [27.00ms]", "retried": true }, "deno": { @@ -30272,7 +30092,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 +30231,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 +30397,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 +31140,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 +31607,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 +31690,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 +31748,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 +31831,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 +32159,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 +32188,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 +32325,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 +32410,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 +32468,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 +32686,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 +32850,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 +32879,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. [29.00ms]", "retried": true }, "deno": { @@ -33088,7 +32908,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 +32966,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": "est/common/index.js:473:12\n\nerror: Command failed: \"${ESCAPED_0}\" --print --eval=-0\n1 | --eval=-0\n ^\nerror: Invalid assignment target\n at /[eval]:1:1\n\n1 | --eval=-0\n ^\nerror: Invalid assignment target\n at /[eval]:1:3\n\nBun v1.4.0 (macOS arm64)\n\n code: 1,\n killed: false,\n signal: null,\n cmd: \"\\\"${ESCAPED_0}\\\" --print --eval=-0\",\n\n at node:child_process:1076:22", "retried": true }, "deno": { @@ -33384,7 +33204,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. [44.00ms]", "retried": true }, "deno": { @@ -33417,7 +33237,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 +33363,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": "r: \"\",\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 [8.87ms]", "retried": true }, "deno": { @@ -33574,7 +33394,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 +33425,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 +33456,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 +33624,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 +35926,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 +35959,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 +35992,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.937/env_dir/v1.4.0-aarch64-34cbb9a40-501/.4b915d8468ce254-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 +36083,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.940/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 +36116,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": "common/child_process.js:122:32)\n at /test/parallel/test-compile-cache-api-permission.js:26:3\n at stdout (/test/parallel/test-compile-cache-api-permission.js:45:16)\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-compile-cache-api-permission.js:26:3", "retried": true }, "deno": { @@ -36828,7 +36648,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,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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 +36683,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 [20.25ms]", "retried": true }, "deno": { @@ -36977,7 +36797,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 +36828,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 +37164,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 +37222,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 +37734,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 +38234,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": "116 | 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:116:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -38476,7 +38296,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 +38325,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 +38464,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": { @@ -38674,11 +38494,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -38988,7 +38806,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 +38839,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": { @@ -39078,11 +38896,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -39114,7 +38930,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 +39982,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 +40873,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 +41178,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:16:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -41391,7 +41207,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 +41348,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 +41433,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 +41495,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 +41615,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 +41646,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 +41735,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": "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": { @@ -41981,7 +41797,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 +41859,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 80266]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80266]: --- stdout ---\n\n[process 80266]: 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 +42101,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": "tderr ---\nerror: Script not found \"inspect\"\n\n[process 80298]: --- stdout ---\n\n[process 80298]: 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-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 +42134,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": " stderr ---\nerror: Script not found \"inspect\"\n\n[process 80300]: --- stdout ---\n\n[process 80300]: 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.js:12 --expr finalValue -- --inspect-port=0 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42516,7 +42332,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ated 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-statement.js:5:3 --expr acc.length --probe probe-multi-statement.js:5:16 --expr acc.length --probe probe-multi-statement.js:5:29 --expr acc.length probe-multi-statement.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ror: - 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-multi-statement.js:5:3 --expr acc.length --probe probe-multi-statement.js:5:16 --expr acc.length --probe probe-multi-statement.js:5:29 --expr acc.length probe-multi-statement.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42549,7 +42365,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": "ocess 80304]: 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-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": { @@ -42582,7 +42398,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "son (/test/common/debugger-probe.js:64:56)\n at stdout (/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js:31: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-failure-hang-during-evaluate.js:22:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "son (/test/common/debugger-probe.js:55:56)\n at stdout (/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js:31: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-failure-hang-during-evaluate.js:22:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42615,7 +42431,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at assertProbeJson (/test/common/debugger-probe.js:64:56)\n at stdout (/test/parallel/test-debugger-probe-failure-process-exit.js:25: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-failure-process-exit.js:17:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " at assertProbeJson (/test/common/debugger-probe.js:55:56)\n at stdout (/test/parallel/test-debugger-probe-failure-process-exit.js:25: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-failure-process-exit.js:17:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42681,7 +42497,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": "[process 80312]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80312]: --- stdout ---\n\n[process 80312]: 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.js:12 --expr finalValue --json probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42714,7 +42530,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": "314]: 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 --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 +42596,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": "\"\n\n[process 80318]: --- stdout ---\n\n[process 80318]: 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.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 +42629,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": "t\"\n\n[process 80320]: --- stdout ---\n\n[process 80320]: 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-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 +42662,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": { @@ -43077,7 +42893,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": "rocess 80324]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80324]: --- stdout ---\n\n[process 80324]: 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 probe-miss.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43110,7 +42926,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 80326]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80326]: --- stdout ---\n\n[process 80326]: 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 --probe probe.js:12 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43143,7 +42959,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": "rocess 80328]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80328]: --- stdout ---\n\n[process 80328]: 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 utils.js:5 --expr b probe-multi-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43176,7 +42992,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": " --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80330]: --- stdout ---\n\n[process 80330]: 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-multi-a/utils.js:5 --expr b probe-multi-entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43209,7 +43025,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": " 80332]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80332]: --- stdout ---\n\n[process 80332]: 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-indented.js:6 --expr x probe-indented.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43242,7 +43058,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": "0334]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80334]: --- stdout ---\n\n[process 80334]: 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 --probe probe.js:12 --expr finalValue --inspect-port=0 probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43275,7 +43091,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": "s 80336]: --- stdout ---\n\n[process 80336]: 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-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": { @@ -43341,7 +43157,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": "-\nerror: Script not found \"inspect\"\n\n[process 80338]: --- stdout ---\n\n[process 80338]: 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-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 +43223,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": "[process 80342]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80342]: --- stdout ---\n\n[process 80342]: 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.js:12 --expr finalValue probe.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43440,7 +43256,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:55:56)\n at stdout (/test/parallel/test-debugger-probe-timeout.js:23: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:12:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -43539,7 +43355,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 +43386,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 +43417,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 +43628,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 +43659,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 +43690,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 +43752,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 +43783,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 +43919,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, @@ -46254,7 +46068,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 +46124,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 +46157,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 +46190,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 +46223,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 +46256,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 +46289,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 +46322,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 +46355,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 +46384,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 +46413,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 +46469,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 +46498,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 +47046,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 +47075,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": { @@ -47292,7 +47106,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n- totalSocketCount: 0\n- },\n- maxHeaderSize: 16384,\n- request: [Function: request],\n- setGlobalProxyFromEnv: [Function: setGlobalProxyFromEnv],\n- setMaxIdleHTTPParsers: [Function: setMaxIdleHTTPParsers],\n- validateHeaderName: [Function: validateHeaderName],\n- validateHeaderValue: [Function: validateHeaderValue]\n- },\n- url: 'http'\n- }\n- ]", + "tail": "alidateHeaderName],\n- validateHeaderValue: [Function: validateHeaderValue]\n- },\n- url: 'http'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [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.js:35:12", "retried": true }, "deno": { @@ -47323,7 +47137,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 +47166,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 +47224,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 +47369,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": { @@ -47612,11 +47426,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -47706,7 +47518,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 +47628,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 +47657,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 +47713,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": { @@ -47998,7 +47810,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;\n49 | }), input, thisArg, expectedResult);\n50 | \n51 | 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:51:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48085,7 +47897,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,7 +48034,7 @@ "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)", + "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.38ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [36.00ms]", "retried": true }, "deno": { @@ -48282,7 +48094,7 @@ "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)", + "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.05ms]\n\n 0 pass\n 6 fail\nRan 6 tests across 1 file. [36.00ms]", "retried": true }, "deno": { @@ -48342,7 +48154,7 @@ "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)", + "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": { @@ -48373,7 +48185,7 @@ "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": "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": { @@ -48401,11 +48213,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -48518,7 +48328,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 +48359,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 +48388,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 +48417,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 +48502,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": { @@ -48721,7 +48531,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ows(() => dns.lookup('127.0.0.1\\u0000.allowed.example', {}), err);\n ^\nTypeError: The \"callback\" argument must be of type function. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at lookup (node:dns:191:23)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-lookup.js:33:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "eFamily (node:dns:113:29)\n at validateFamilyOption (node:dns:125:23)\n at validateLookupOptions (node:dns:180:53)\n at lookup (node:dns:465:73)\n at (/test/parallel/test-dns-lookup.js:79:37)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-lookup.js:79:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -48781,7 +48591,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 +48620,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 +48705,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 +48763,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 +48881,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 +48910,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 +48993,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 +49051,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 +49140,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 +49171,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 +49200,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 +49231,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 +49289,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:51501/b4bbd8ce-ae5c-46f0-a694-37db42c94849", "retried": true }, "deno": { @@ -49537,7 +49347,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 +49376,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 +49463,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 +49492,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 +49521,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 +49550,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 +49579,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 +49608,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 +49639,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 +49724,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 +49807,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 +49836,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 +49865,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 +49894,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 +49925,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 +49956,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 +49985,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 +50014,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 +50045,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 +50076,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 +50105,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 +50134,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:85:16", "retried": true }, "deno": { @@ -50552,7 +50362,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 +50391,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 +50420,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 +50476,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 +50538,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 +50569,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 +50627,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 +50656,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 [22.20ms]", "retried": true }, "deno": { @@ -51119,7 +50929,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 +51014,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 +51043,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 +51101,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: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)", "retried": true }, "deno": { @@ -51322,7 +51132,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 +51163,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 +51192,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 +51221,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 +51250,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 +51337,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 +51366,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 +51395,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 +52321,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": { @@ -53256,233 +53066,7 @@ "exit": 0 } }, - "parallel/test-event-emitter-subclass.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-event-emitter-symbols.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-event-target.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-eventemitter-asyncresource.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "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)", - "retried": true - }, - "deno": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "ventemitter-asyncresource.js:87:3)\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-eventemitter-asyncresource.js:5:26", - "retried": true - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-events-add-abort-listener.mjs": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "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 - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-events-customevent.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "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)", - "retried": true - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-events-getmaxlisteners.js": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "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)", - "retried": true - }, - "deno": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "node25": { - "pass": true, - "timeout": false, - "exit": 0 - } - }, - "parallel/test-events-list.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-events-listener-count-with-listener.js": { + "parallel/test-event-emitter-subclass.js": { "node": { "pass": true, "timeout": false, @@ -53509,7 +53093,7 @@ "exit": 0 } }, - "parallel/test-events-on-async-iterator.js": { + "parallel/test-event-emitter-symbols.js": { "node": { "pass": true, "timeout": false, @@ -53521,11 +53105,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -53538,7 +53120,7 @@ "exit": 0 } }, - "parallel/test-events-once.js": { + "parallel/test-event-target.js": { "node": { "pass": true, "timeout": false, @@ -53565,7 +53147,7 @@ "exit": 0 } }, - "parallel/test-events-static-geteventlisteners.js": { + "parallel/test-eventemitter-asyncresource.js": { "node": { "pass": true, "timeout": false, @@ -53580,13 +53162,15 @@ "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": "],\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": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "ventemitter-asyncresource.js:87:3)\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-eventemitter-asyncresource.js:5:26", + "retried": true }, "node25": { "pass": true, @@ -53594,7 +53178,7 @@ "exit": 0 } }, - "parallel/test-events-uncaught-exception-stack.js": { + "parallel/test-events-add-abort-listener.mjs": { "node": { "pass": true, "timeout": false, @@ -53621,38 +53205,36 @@ "exit": 0 } }, - "parallel/test-eventsource-disabled.js": { + "parallel/test-events-customevent.js": { "node": { "pass": true, "timeout": false, "exit": 0 }, "nub": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": ">/runtime/preload-common.cjs:1411:30)\n at wrapModuleLoad (node:internal/modules/cjs/loader:261:19)\n at Module.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:154:5)\n at node:internal/main/run_main_module:33:47 {\n generatedMessage: true,\n code: 'ERR_ASSERTION',\n actual: 'function',\n expected: 'undefined',\n operator: 'strictEqual',\n diff: 'simple'\n}\n\nNode.js v26.7.0", - "retried": true - }, - "bun": { "pass": true, "timeout": false, "exit": 0 }, - "deno": { + "bun": { "pass": false, "timeout": false, "exit": 1, - "tail": "rallel/test-eventsource-disabled.js:6: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-eventsource-disabled.js:5:26", + "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": { + "pass": true, + "timeout": false, + "exit": 0 + }, "node25": { "pass": true, "timeout": false, "exit": 0 } }, - "parallel/test-eventsource.js": { + "parallel/test-events-getmaxlisteners.js": { "node": { "pass": true, "timeout": false, @@ -53667,7 +53249,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": "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": { @@ -53681,7 +53263,7 @@ "exit": 0 } }, - "parallel/test-eventtarget-brandcheck.js": { + "parallel/test-events-list.js": { "node": { "pass": true, "timeout": false, @@ -53693,11 +53275,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -53710,7 +53290,7 @@ "exit": 0 } }, - "parallel/test-eventtarget-custom-inspect-does-not-throw.js": { + "parallel/test-events-listener-count-with-listener.js": { "node": { "pass": true, "timeout": false, @@ -53737,7 +53317,7 @@ "exit": 0 } }, - "parallel/test-eventtarget-memoryleakwarning.js": { + "parallel/test-events-on-async-iterator.js": { "node": { "pass": true, "timeout": false, @@ -53752,15 +53332,13 @@ "pass": false, "timeout": false, "exit": 1, - "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-memoryleakwarning.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-events-on-async-iterator.js:9:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " at file:///test/common/index.js:726:28\n at Array.forEach ()\n at Proxy.expectWarning (file:///test/common/index.js:725:28)\n at Object. (file:///test/parallel/test-eventtarget-memoryleakwarning.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)", - "retried": true + "exit": 0 }, "node25": { "pass": true, @@ -53768,7 +53346,7 @@ "exit": 0 } }, - "parallel/test-eventtarget-once-twice.js": { + "parallel/test-events-once.js": { "node": { "pass": true, "timeout": false, @@ -53795,7 +53373,7 @@ "exit": 0 } }, - "parallel/test-eventtarget.js": { + "parallel/test-events-static-geteventlisteners.js": { "node": { "pass": true, "timeout": false, @@ -53810,15 +53388,13 @@ "pass": false, "timeout": false, "exit": 1, - "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.js:7: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-static-geteventlisteners.js:4:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "at Array.forEach ()\n at Object. (file:///test/parallel/test-eventtarget.js:58:5)\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-eventtarget.js:5:26", - "retried": true + "exit": 0 }, "node25": { "pass": true, @@ -53826,7 +53402,7 @@ "exit": 0 } }, - "parallel/test-exception-handler.js": { + "parallel/test-events-uncaught-exception-stack.js": { "node": { "pass": true, "timeout": false, @@ -53853,16 +53429,18 @@ "exit": 0 } }, - "parallel/test-exception-handler2.js": { + "parallel/test-eventsource-disabled.js": { "node": { "pass": true, "timeout": false, "exit": 0 }, "nub": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": ">/runtime/preload-common.cjs:1411:30)\n at wrapModuleLoad (node:internal/modules/cjs/loader:261:19)\n at Module.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:154:5)\n at node:internal/main/run_main_module:33:47 {\n generatedMessage: true,\n code: 'ERR_ASSERTION',\n actual: 'function',\n expected: 'undefined',\n operator: 'strictEqual',\n diff: 'simple'\n}\n\nNode.js v26.7.0", + "retried": true }, "bun": { "pass": true, @@ -53870,9 +53448,11 @@ "exit": 0 }, "deno": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "rallel/test-eventsource-disabled.js:6: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-eventsource-disabled.js:5:26", + "retried": true }, "node25": { "pass": true, @@ -53880,7 +53460,7 @@ "exit": 0 } }, - "parallel/test-experimental-shared-value-conveyor.js": { + "parallel/test-eventsource.js": { "node": { "pass": true, "timeout": false, @@ -53895,15 +53475,13 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed is not a constructor (evaluating 'new globalThis.SharedArray(16)')\\n at (/test/parallel/test-experimental-shared-value-conveyor.js:11:15)\\n\\nBun v1.4.0 (macOS arm64)\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-experimental-shared-value-conveyor.js:34:10\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": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "nonymous> (file:///test/parallel/test-experimental-shared-value-conveyor.js:34:10)\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-experimental-shared-value-conveyor.js:5:26", - "retried": true + "exit": 0 }, "node25": { "pass": true, @@ -53911,7 +53489,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-destroy.js": { + "parallel/test-eventtarget-brandcheck.js": { "node": { "pass": true, "timeout": false, @@ -53923,9 +53501,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -53938,7 +53518,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-end.js": { + "parallel/test-eventtarget-custom-inspect-does-not-throw.js": { "node": { "pass": true, "timeout": false, @@ -53965,7 +53545,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-flush-mocks.js": { + "parallel/test-eventtarget-memoryleakwarning.js": { "node": { "pass": true, "timeout": false, @@ -53977,14 +53557,18 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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-memoryleakwarning.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": " at file:///test/common/index.js:726:28\n at Array.forEach ()\n at Proxy.expectWarning (file:///test/common/index.js:725:28)\n at Object. (file:///test/parallel/test-eventtarget-memoryleakwarning.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)", + "retried": true }, "node25": { "pass": true, @@ -53992,7 +53576,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-flush-sync.js": { + "parallel/test-eventtarget-once-twice.js": { "node": { "pass": true, "timeout": false, @@ -54019,7 +53603,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-flush.js": { + "parallel/test-eventtarget.js": { "node": { "pass": true, "timeout": false, @@ -54031,14 +53615,18 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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.js:7:3)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "at Array.forEach ()\n at Object. (file:///test/parallel/test-eventtarget.js:58:5)\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-eventtarget.js:5:26", + "retried": true }, "node25": { "pass": true, @@ -54046,7 +53634,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-fsync.js": { + "parallel/test-exception-handler.js": { "node": { "pass": true, "timeout": false, @@ -54073,7 +53661,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-full-write-utf8.js": { + "parallel/test-exception-handler2.js": { "node": { "pass": true, "timeout": false, @@ -54085,28 +53673,22 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " stream must flush everything on its own.\n53 | setTimeout(common.mustCall(() => {\n54 | assert.strictEqual(chunks.length, COUNT,\n ^\nAssertionError: expected 3 writes, got 1\n\n1 !== 3\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-fastutf8stream-full-write-utf8.js:54:12)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "-full-write-utf8.js:54:12)\n at Timeout._onTimeout (file:///test/common/index.js:510:15)\n at invokeCallback (ext:deno_node/internal/timers.mjs:4:810)\n at Object.cb [as _onTimeout] (ext:deno_node/internal/timers.mjs:4:1174)\n at listOnTimeout (ext:core/02_timers.js:307:17)\n at Object.processTimers (ext:core/02_timers.js:250:7)\n at __processTimers (ext:core/01_core.js:447:21)", - "retried": true + "exit": 0 }, "node25": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " (/test/parallel/test-fastutf8stream-full-write-utf8.js:54:12)\n at Timeout._onTimeout (/test/common/index.js:510:15)\n at listOnTimeout (node:internal/timers:605:17)\n at process.processTimers (node:internal/timers:541:7) {\n generatedMessage: false,\n code: 'ERR_ASSERTION',\n actual: 1,\n expected: 3,\n operator: 'strictEqual',\n diff: 'simple'\n}\n\nNode.js v25.9.0", - "retried": true + "exit": 0 } }, - "parallel/test-fastutf8stream-minlength.js": { + "parallel/test-experimental-shared-value-conveyor.js": { "node": { "pass": true, "timeout": false, @@ -54118,14 +53700,18 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "ed is not a constructor (evaluating 'new globalThis.SharedArray(16)')\\n at (/test/parallel/test-experimental-shared-value-conveyor.js:11:15)\\n\\nBun v1.4.0 (macOS arm64)\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-experimental-shared-value-conveyor.js:34:10\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "nonymous> (file:///test/parallel/test-experimental-shared-value-conveyor.js:34:10)\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-experimental-shared-value-conveyor.js:5:26", + "retried": true }, "node25": { "pass": true, @@ -54133,7 +53719,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-mode.js": { + "parallel/test-fastutf8stream-destroy.js": { "node": { "pass": true, "timeout": false, @@ -54160,7 +53746,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-partial-write-utf8.js": { + "parallel/test-fastutf8stream-end.js": { "node": { "pass": true, "timeout": false, @@ -54187,7 +53773,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-periodicflush.js": { + "parallel/test-fastutf8stream-flush-mocks.js": { "node": { "pass": true, "timeout": false, @@ -54214,7 +53800,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-reopen.js": { + "parallel/test-fastutf8stream-flush-sync.js": { "node": { "pass": true, "timeout": false, @@ -54241,7 +53827,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-retry.js": { + "parallel/test-fastutf8stream-flush.js": { "node": { "pass": true, "timeout": false, @@ -54268,7 +53854,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-sync.js": { + "parallel/test-fastutf8stream-fsync.js": { "node": { "pass": true, "timeout": false, @@ -54295,7 +53881,7 @@ "exit": 0 } }, - "parallel/test-fastutf8stream-write-buffer.js": { + "parallel/test-fastutf8stream-full-write-utf8.js": { "node": { "pass": true, "timeout": false, @@ -54310,25 +53896,25 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "7 | if (bufs.length === 0)\n ^\nTypeError: undefined is not an object (evaluating 'bufs')\n at mergeBuf (internal:streams/fast-utf8-stream:497:11)\n at #actualWriteBuffer (internal:streams/fast-utf8-stream:320:101)\n at #release (internal:streams/fast-utf8-stream:230:24)\n at guarded (internal:shared:116:26)\n at wrapper (node:fs:136:13)\n\nBun v1.4.0 (macOS arm64)", + "tail": " stream must flush everything on its own.\n53 | setTimeout(common.mustCall(() => {\n54 | assert.strictEqual(chunks.length, COUNT,\n ^\nAssertionError: expected 3 writes, got 1\n\n1 !== 3\n\n at innerFail (node:assert:48:32)\n at strictEqual (node:assert:179:14)\n at (/test/parallel/test-fastutf8stream-full-write-utf8.js:54:12)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { "pass": false, "timeout": false, "exit": 1, - "tail": "er (ext:deno_node/internal/streams/fast-utf8-stream.js:1:11558)\n at Utf8Stream.#write (ext:deno_node/internal/streams/fast-utf8-stream.js:1:2820)\n at Utf8Stream.write (ext:deno_node/internal/streams/fast-utf8-stream.js:1:4075)\n at Utf8Stream. (file:///test/parallel/test-fastutf8stream-write-buffer.js:33:24)", + "tail": "-full-write-utf8.js:54:12)\n at Timeout._onTimeout (file:///test/common/index.js:510:15)\n at invokeCallback (ext:deno_node/internal/timers.mjs:4:810)\n at Object.cb [as _onTimeout] (ext:deno_node/internal/timers.mjs:4:1174)\n at listOnTimeout (ext:core/02_timers.js:307:17)\n at Object.processTimers (ext:core/02_timers.js:250:7)\n at __processTimers (ext:core/01_core.js:447:21)", "retried": true }, "node25": { "pass": false, "timeout": false, "exit": 1, - "tail": "Utf8Stream. (/test/parallel/test-fastutf8stream-write-buffer.js:33:24)\n at Utf8Stream. (/test/common/index.js:510:15)\n at Utf8Stream.emit (node:events:509:20)\n at node:internal/streams/fast-utf8-stream:509:37\n\nNode.js v25.9.0", + "tail": " (/test/parallel/test-fastutf8stream-full-write-utf8.js:54:12)\n at Timeout._onTimeout (/test/common/index.js:510:15)\n at listOnTimeout (node:internal/timers:605:17)\n at process.processTimers (node:internal/timers:541:7) {\n generatedMessage: false,\n code: 'ERR_ASSERTION',\n actual: 1,\n expected: 3,\n operator: 'strictEqual',\n diff: 'simple'\n}\n\nNode.js v25.9.0", "retried": true } }, - "parallel/test-fastutf8stream-write.js": { + "parallel/test-fastutf8stream-minlength.js": { "node": { "pass": true, "timeout": false, @@ -54355,7 +53941,7 @@ "exit": 0 } }, - "parallel/test-fetch-mock.js": { + "parallel/test-fastutf8stream-mode.js": { "node": { "pass": true, "timeout": false, @@ -54367,11 +53953,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, @@ -54384,7 +53968,7 @@ "exit": 0 } }, - "parallel/test-fetch.mjs": { + "parallel/test-fastutf8stream-partial-write-utf8.js": { "node": { "pass": true, "timeout": false, @@ -54411,7 +53995,7 @@ "exit": 0 } }, - "parallel/test-ffi-missing-build.js": { + "parallel/test-fastutf8stream-periodicflush.js": { "node": { "pass": true, "timeout": false, @@ -54423,18 +54007,14 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "t/parallel/test-ffi-missing-build.js:78:10)\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-ffi-missing-build.js:5:26", - "retried": true + "exit": 0 }, "node25": { "pass": true, @@ -54442,7 +54022,7 @@ "exit": 0 } }, - "parallel/test-file-read-noexist.js": { + "parallel/test-fastutf8stream-reopen.js": { "node": { "pass": true, "timeout": false, @@ -54469,7 +54049,7 @@ "exit": 0 } }, - "parallel/test-file-validate-mode-flag.js": { + "parallel/test-fastutf8stream-retry.js": { "node": { "pass": true, "timeout": false, @@ -54496,7 +54076,7 @@ "exit": 0 } }, - "parallel/test-file-write-stream.js": { + "parallel/test-fastutf8stream-sync.js": { "node": { "pass": true, "timeout": false, @@ -54523,7 +54103,40 @@ "exit": 0 } }, - "parallel/test-file-write-stream2.js": { + "parallel/test-fastutf8stream-write-buffer.js": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "7 | if (bufs.length === 0)\n ^\nTypeError: undefined is not an object (evaluating 'bufs')\n at mergeBuf (internal:streams/fast-utf8-stream:497:11)\n at #actualWriteBuffer (internal:streams/fast-utf8-stream:320:101)\n at #release (internal:streams/fast-utf8-stream:230:24)\n at guarded (internal:shared:116:26)\n at wrapper (node:fs:136:13)\n\nBun v1.4.0 (macOS arm64)", + "retried": true + }, + "deno": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "er (ext:deno_node/internal/streams/fast-utf8-stream.js:1:11558)\n at Utf8Stream.#write (ext:deno_node/internal/streams/fast-utf8-stream.js:1:2820)\n at Utf8Stream.write (ext:deno_node/internal/streams/fast-utf8-stream.js:1:4075)\n at Utf8Stream. (file:///test/parallel/test-fastutf8stream-write-buffer.js:33:24)", + "retried": true + }, + "node25": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "Utf8Stream. (/test/parallel/test-fastutf8stream-write-buffer.js:33:24)\n at Utf8Stream. (/test/common/index.js:510:15)\n at Utf8Stream.emit (node:events:509:20)\n at node:internal/streams/fast-utf8-stream:509:37\n\nNode.js v25.9.0", + "retried": true + } + }, + "parallel/test-fastutf8stream-write.js": { "node": { "pass": true, "timeout": false, @@ -54550,7 +54163,7 @@ "exit": 0 } }, - "parallel/test-file-write-stream3.js": { + "parallel/test-fetch-mock.js": { "node": { "pass": true, "timeout": false, @@ -54577,7 +54190,7 @@ "exit": 0 } }, - "parallel/test-file-write-stream4.js": { + "parallel/test-fetch.mjs": { "node": { "pass": true, "timeout": false, @@ -54604,7 +54217,7 @@ "exit": 0 } }, - "parallel/test-file-write-stream5.js": { + "parallel/test-ffi-missing-build.js": { "node": { "pass": true, "timeout": false, @@ -54619,9 +54232,200 @@ "pass": false, "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)", + "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": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "t/parallel/test-ffi-missing-build.js:78:10)\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-ffi-missing-build.js:5:26", "retried": true }, + "node25": { + "pass": true, + "timeout": false, + "exit": 0 + } + }, + "parallel/test-file-read-noexist.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-file-validate-mode-flag.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-file-write-stream.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-file-write-stream2.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-file-write-stream3.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-file-write-stream4.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-file-write-stream5.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, @@ -54814,7 +54618,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 [6.08ms]", "retried": true }, "deno": { @@ -54845,7 +54649,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 +54680,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 +54711,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 +54771,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 +54802,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 +54833,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.79ms]\n(pass) promise based version [1.63ms]\n\n 1 pass\n 2 fail\nRan 3 tests across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -55143,7 +54947,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 +55030,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 +55167,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 +57449,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 +57480,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 +57592,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 +57701,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 +58030,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 +58227,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 +58390,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, @@ -58703,7 +58503,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 +58534,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": "ined,\n expected: {\n name: \"AbortError\",\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 doAppendAndCancel (/test/parallel/test-fs-promises-file-handle-append-file.js:49:16)\n at processTicksAndRejections (native:7:39)", "retried": true }, "deno": { @@ -58790,7 +58590,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 +58648,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 +58793,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": { @@ -59354,7 +59154,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 +59517,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 +59681,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 +59959,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 +60150,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 +60206,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 +60262,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 +60344,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, @@ -60806,7 +60604,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": { @@ -61625,11 +61423,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 +61540,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 +61976,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 +62117,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 +62173,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 +62202,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": { @@ -63417,7 +63213,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 +63406,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.94ms]\n(pass) promise based version [1.70ms]\n\n 1 pass\n 2 fail\nRan 3 tests across 1 file. [35.00ms]", "retried": true }, "deno": { @@ -63855,7 +63651,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 +63682,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 +63791,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 +63955,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 +64147,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 +64340,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 +64398,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 +64427,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 +64456,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 +64541,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 +64572,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 +64773,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 +64804,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 +64864,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 +64895,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 +64926,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 +64957,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 +64988,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 +65019,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 +65079,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 +65110,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 +65141,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 +65172,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 +65203,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": { @@ -66508,9 +66300,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "p://example.org\",\n},\n expected: [Object: null prototype] {\n host: \"example.org:443\",\n origin: \"http://example.org\",\n cookie: \"\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-blank-header.js:31: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": { "pass": true, @@ -67403,9 +67197,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "bject: null prototype] {\n \"x-foo\": \"boom\",\n cookie: \"a=1; b=2; c=3\",\n connection: \"keep-alive\",\n host: \"localhost:51786\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-client-headers-array.js:29:12\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": { "pass": true, @@ -67493,7 +67289,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": { @@ -68802,9 +68598,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "-alive\",\n \"content-length\": \"11\",\n},\n expected: [Object: null prototype] {\n connection: \"keep-alive\",\n \"content-length\": \"11\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-content-length.js:35:14\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": { "pass": true, @@ -69239,7 +69037,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 +69641,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": { @@ -70641,9 +70439,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "ERR_ASSERTION\"\n\n at assertResponse (/test/parallel/test-http-keep-alive-max-requests.js:17:12)\n at /test/parallel/test-http-keep-alive-max-requests.js:69:9\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -70668,9 +70468,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": " at assertResponse (/test/parallel/test-http-keep-alive-pipeline-max-requests.js:17:12)\n at /test/parallel/test-http-keep-alive-pipeline-max-requests.js:73:7\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -70995,7 +70797,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": { @@ -71194,7 +70996,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": { @@ -71355,9 +71157,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": " \"x-req-a\": \"eee, fff, ggg, hhh\",\n \"x-req-b\": \"iii; jjj; kkk; lll\",\n host: \"127.0.0.1:53278\",\n \"transfer-encoding\": \"chunked\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-multiple-headers.js:22:12\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": { "pass": false, @@ -71666,11 +71470,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -71942,9 +71744,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "r: Missing expected exception (Error).\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_HTTP_HEADERS_SENT\",\n name: \"Error\",\n message: \"Cannot set trailing headers after they are sent to the client\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-outgoing-proto.js:132:8\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -72023,11 +71827,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -72312,7 +72114,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": { @@ -72446,11 +72248,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -72675,7 +72475,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": "bject: null prototype] {\n host: \"localhost:53364\",\n \"transfer-encoding\": \"CHUNKED\",\n \"x-bar\": \"yoyoyo\",\n connection: \"keep-alive\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-raw-headers.js:59: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": { @@ -72755,9 +72555,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "IncomingClient (node:_http_client:422:137)\n at execute (unknown:1:1)\n at processClientData (node:_http_client:349:54)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -72785,7 +72587,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": { @@ -73162,11 +72964,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -73974,7 +73774,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": "est/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)\nMismatched function calls. Expected at least 1, actual 0.", "retried": true }, "deno": { @@ -74305,9 +74105,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "SERTION\"\n\n at assertResponse (/test/parallel/test-http-server-keep-alive-defaults.js:12:10)\n at /test/parallel/test-http-server-keep-alive-defaults.js:67:7\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -74332,9 +74134,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": " assertResponse (/test/parallel/test-http-server-keep-alive-max-requests-null.js:12:10)\n at /test/parallel/test-http-server-keep-alive-max-requests-null.js:66:7\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -74418,7 +74222,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 +74849,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": { @@ -75750,9 +75554,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "llel/test-http-upgrade-agent.js:82:12\n at emit (node:events:106:22)\n at processClientData (node:_http_client:363:276)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -75804,9 +75610,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "lel/test-http-upgrade-client.js:91:14\n at emit (node:events:106:22)\n at processClientData (node:_http_client:363:276)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -75912,9 +75720,11 @@ "exit": 0 }, "bun": { - "pass": true, - "timeout": false, - "exit": 0 + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true }, "deno": { "pass": false, @@ -76832,7 +76642,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 +76860,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 +76893,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 +76949,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 +77360,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": { @@ -78116,9 +77926,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "ge: true,\n actual: [Object: null prototype] {},\n expected: null,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http2-compat-serverrequest-trailers.js:25: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": { "pass": true, @@ -79126,7 +78938,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 +79075,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 +79239,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 82763]: --- stdout ---\n\n[process 82763]: 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 +79729,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 +79787,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 +80316,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 +80345,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 +80644,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 +80818,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 +80984,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 +81393,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 +81881,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 +81937,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 +82236,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 +82319,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 +82537,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 +82728,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": { @@ -83108,14 +82920,7 @@ "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)" - } + "exit": 0 }, "deno": { "pass": true, @@ -83915,7 +83720,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 +83749,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 +83778,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 +83807,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 +83836,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": { @@ -84447,11 +84252,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -85336,7 +85139,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 +85303,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 +85469,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": { @@ -85979,7 +85782,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 +85921,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 +86058,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 +86120,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 +86176,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 +86205,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 +86236,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 +86267,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 +86360,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] 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 +86451,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 +86571,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:54641/1efc74bc-5148-47cd-88b2-5c253624e5b7\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 +86600,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 +86658,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 +86747,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 +86840,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 83641]: --- stdout ---\n\n[process 83641]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.2692\",\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 +86873,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 +86906,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 +86935,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": "138d9c91f\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 +87084,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 +87171,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 +87200,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:54671/6a83842a-ad90-4c2a-ae7d-c97aa42f3977", "retried": true }, "deno": { @@ -87459,7 +87262,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 +87351,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 +87380,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 +87440,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.34ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [33.00ms]", "retried": true }, "deno": { @@ -87666,7 +87469,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 +87500,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 +87529,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 +87558,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:54681/5159afa1-e533-4211-8012-6ffd80270f3f\nInspect in browser:\n https://debug.bun.sh/#localhost:54681/5159afa1-e533-4211-8012-6ffd80270f3f\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 +87587,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 +87618,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 +87649,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 +87819,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 +87879,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": "('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 (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-promises.js:47:26)", "retried": true }, "deno": { @@ -88134,7 +87937,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 +87966,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 +88140,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:92:20)\n\n18 | \n19 | function post(message, data) {\n20 | return new Promise((resolve, reject) => {\n21 | session.post(message, data, (err, result) => {\n22 | if (err)\n23 | reject(new Error(JSON.stringify(err)));\n ^\nerror: {}\n at (/test/parallel/test-inspector-tracing-domain.js:23:20)\n at (node:inspector:300:19)", "retried": true }, "deno": { @@ -88368,7 +88171,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 +88200,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": { @@ -88426,7 +88229,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ode:_http_client:349:54)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72) {\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: 'fail',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}\n1", + "tail": "(node:_http_client:349:54)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72) {\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: 'fail',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", "retried": true }, "deno": { @@ -88662,7 +88465,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 +88525,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 +88554,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 +88585,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 +88616,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 +88674,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 +88707,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 +88736,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 +88825,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 +88856,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 +88887,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-internal-util-assertCrypto.js:5:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89115,7 +88918,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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 +88949,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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 +88980,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-internal-util-getCIDR.js:11:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89208,7 +89011,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-internal-util-helpers.js:7:29)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89268,7 +89071,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-internal-util-normalizeencoding.js:6:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89297,7 +89100,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-internal-util-objects.js:10:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89328,7 +89131,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-internal-util-weakreference.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -89381,11 +89184,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -89417,7 +89218,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. [26.00ms]", "retried": true }, "deno": { @@ -89450,7 +89251,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 +89284,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 +89371,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": " (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) worker_threads.isInternalThread > should be true inside the loader thread [10.21ms]\n(pass) worker_threads.isInternalThread > should be false inside the main thread [0.12ms]\n(pass) worker_threads.isInternalThread > should be false inside a regular worker thread [1.62ms]\n\n 2 pass\n 1 fail\nRan 3 tests across 1 file. [40.00ms]", "retried": true }, "deno": { @@ -89601,7 +89402,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 +89460,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 +89574,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 +89659,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 +89717,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 +89802,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": { @@ -90141,11 +89942,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "Charset=value');\n169 | assert.strictEqual(mime.params.get('Charset'), 'value');\n ^\nAssertionError: Expected values to be strictly equal:\n\nnull !== 'value'\n\n generatedMessage: true,\n actual: null,\n expected: \"value\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-mime-api.js:169:10\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -90538,7 +90337,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 +90395,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 +90426,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 +90569,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:157:10\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n(fail) should support enable tracing dynamically [33.09ms]\n(pass) should not print when is disabled and found duplicated labels (GH-54265) [9.87ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [107.00ms]", "retried": true }, "deno": { @@ -90911,7 +90710,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 +90932,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": { @@ -91991,11 +91790,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 +91903,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 +92046,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": { @@ -92275,11 +92072,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -92687,7 +92482,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 +93175,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 +93204,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 +93343,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 +93372,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 +93587,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 +93808,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 +93839,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": { @@ -95839,7 +95632,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 [72.02ms]\n\n 3 pass\n 2 fail\nRan 5 tests across 1 file. [224.00ms]", "retried": true }, "deno": { @@ -95874,7 +95667,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 [28.43ms]", "retried": true }, "deno": { @@ -95932,9 +95725,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 +95758,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": "SSERTION\"\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-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 [30.86ms]", "retried": true }, "deno": { @@ -96000,7 +95793,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:862: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. [26.00ms]", "retried": true }, "deno": { @@ -96033,7 +95826,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 +95911,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 +95942,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 +95973,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 +96004,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. [28.00ms]", "retried": true }, "deno": { @@ -96267,7 +96060,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 +96143,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 +96172,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": { @@ -96495,7 +96288,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 +96323,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.52ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -96567,7 +96360,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.11ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -96735,7 +96528,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 +96557,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 +96586,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 +96698,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 +96727,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 +96864,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 +96982,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": { @@ -97249,7 +97042,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 +97293,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 +97324,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": "nError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1788135184561.1\n- 1788135184535.022\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": { @@ -97624,7 +97417,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Mismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-performance-gc.js:30:46)", + "tail": "Mismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-performance-gc.js:28:46)", "retried": true }, "deno": { @@ -97763,7 +97556,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 +97587,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": ".strictEqual(nodeTiming.startTime, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1788135186382.028\n- 0\n\n generatedMessage: true,\n actual: 1788135186382.028,\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 +97618,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 +97649,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 +97738,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 +97767,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 +97831,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 +97864,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 +97897,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": { @@ -98238,7 +98031,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 +98134,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.62ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [133.00ms]", "retried": true }, "deno": { @@ -98374,7 +98167,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);\n22 | assert.strictEqual(messages.length, 0);\n23 | \n24 | // Denied permission should publish\n25 | 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:25:26)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -98436,7 +98229,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 +98264,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 +98299,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 +98365,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 +98435,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 +98470,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 +98672,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": { @@ -98947,7 +98740,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 +98773,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": { @@ -99013,7 +98806,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at /[eval]:6:36\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.js:73:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/fixtures/permission/fs-read.js:41:10\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.js:50:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99048,7 +98841,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 +98874,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 +98907,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 +99002,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 +99101,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": { @@ -99366,9 +99159,9 @@ }, "bun": { "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", + "timeout": false, + "exit": 1, + "tail": "\n15 | const assert = require('assert');\n16 | \n17 | {\n18 | 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-report.js:18:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99436,7 +99229,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 +99297,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 +99361,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 +99394,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 +99427,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 +99553,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 +99582,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 +99615,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 +99648,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": "ed'));\n31 | }\n32 | \n33 | {\n34 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_ACCESS_DENIED\",\n permission: \"Net\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-net-uds.js:34:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99950,7 +99743,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": { @@ -100078,7 +99871,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " \\x2d\\x2dallow\\x2daddons must be used with extreme caution/. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /\\[PERM\\d{4}\\] SecurityWarning: The flag \\x2d\\x2dallow\\x2daddons must be used with extreme caution/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-warning-flags.js:29:10\n\nBun v1.4.0 (macOS arm64)", + "tail": "ning: The flag \\x2d\\x2dallow\\x2daddons must be used with extreme caution/. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /SecurityWarning: The flag \\x2d\\x2dallow\\x2daddons must be used with extreme caution/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-warning-flags.js:28:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100113,7 +99906,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 +99939,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 +100323,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": "ted: \"A\\nhello\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-preload.js:93:10\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 +100383,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 +100414,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 +100445,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 +100638,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 +100667,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 +101053,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\n149 !== 0\n\n generatedMessage: false,\n actual: 149,\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 +101194,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 +101333,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 +101472,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 +101590,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 +101712,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 +101826,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": { @@ -102250,9 +102043,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": ",\n},\n expected: Set(14) {\n \"inspector\",\n \"debug\",\n \"uv\",\n \"ipv6\",\n \"openssl_is_boringssl\",\n \"dtls\",\n \"quic\",\n \"tls_alpn\",\n \"tls_sni\",\n \"tls_ocsp\",\n \"tls\",\n \"cached_builtins\",\n \"require_module\",\n \"typescript\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-features.js:24:8\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": true, @@ -102277,11 +102072,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -102313,7 +102106,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:85958) [DEP0192] DeprecationWarning: The _tls_common module is deprecated. Use `node:tls` instead.\n(node:85958) [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 +102164,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 +102193,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 +102257,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 +102286,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 +102315,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 +102348,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 +102406,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 +102435,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 +102520,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 +102551,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 [17.21ms]\n(pass) process.loadEnvFile() > loadEnvFile does not mutate --env-file output [23.56ms]\n\n 5 pass\n 1 fail\nRan 6 tests across 1 file. [114.00ms]", "retried": true }, "deno": { @@ -103006,11 +102799,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 +102885,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 +103024,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 +103109,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 +103169,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 +103226,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 +103285,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 +103345,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 +103374,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 +103403,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 +103432,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 +103521,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 +103608,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 +103805,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 +103894,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 +104203,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": "ror(\"ERR_QUIC_TRANSPORT_ERROR\", \"QUIC transport error\", \"transport\", code, reason, errorName));\n ^\nerror: QUIC transport error 376: no application protocol\n reason: \"no application protocol\",\n code: \"ERR_QUIC_TRANSPORT_ERROR\"\n\n at [kFinishClose] (internal:quic/quic:1742:35)\n at onSessionClose (internal:quic/quic:276:100)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -105549,11 +105338,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "Mismatched function calls. Expected exactly 1, actual 2.\n at /test/parallel/test-quic-diagnostics-channel-path.mjs:21:46", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -106930,11 +106717,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at /test/parallel/test-quic-h3-settings.mjs:162:20\n at processTicksAndRejections (native:7:39)\nMismatched function calls. Expected exactly 1, actual 0.\n at /test/parallel/test-quic-h3-settings.mjs:174:33\n at processTicksAndRejections (native:7:39)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -107258,11 +107043,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -107287,11 +107070,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -107580,117 +107361,7 @@ "exit": 0 } }, - "parallel/test-quic-preferred-address-ignore.mjs": { - "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-quic-qlog.mjs": { - "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-quic-reject-unauthorized.mjs": { - "node": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "nub": { - "pass": true, - "timeout": false, - "exit": 0 - }, - "bun": { - "pass": false, - "timeout": false, - "exit": 1, - "tail": "RR_QUIC_TRANSPORT_ERROR\", \"QUIC transport error\", \"transport\", code, reason, errorName));\n ^\nerror: QUIC transport error 1: Missing expected rejection.\n reason: \"Missing expected rejection.\",\n code: \"ERR_QUIC_TRANSPORT_ERROR\"\n\n at [kFinishClose] (internal:quic/quic:1742:35)\n at onSessionClose (internal:quic/quic:276:100)\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-quic-session-application-options.mjs": { - "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-quic-session-close-error-code.mjs": { + "parallel/test-quic-preferred-address-ignore.mjs": { "node": { "pass": true, "timeout": false, @@ -107717,6 +107388,118 @@ "exit": 0 } }, + "parallel/test-quic-qlog.mjs": { + "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-quic-reject-unauthorized.mjs": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "RR_QUIC_TRANSPORT_ERROR\", \"QUIC transport error\", \"transport\", code, reason, errorName));\n ^\nerror: QUIC transport error 1: Missing expected rejection.\n reason: \"Missing expected rejection.\",\n code: \"ERR_QUIC_TRANSPORT_ERROR\"\n\n at [kFinishClose] (internal:quic/quic:1742:35)\n at onSessionClose (internal:quic/quic:276:100)\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-quic-session-application-options.mjs": { + "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-quic-session-close-error-code.mjs": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "tail": "3)\n436 | process.nextTick(() => {\n437 | throw new SuppressedError(err, error, err?.message);\n438 | });\n439 | });\n440 | } catch (err) {\n441 | throw new SuppressedError(err, error, err?.message);\n ^\nSuppressedError: Expected values to be strictly equal:\n\nfalse !== true\n\n at (internal:quic/quic:441:13)\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-quic-session-close-graceful.mjs": { "node": { "pass": true, @@ -108354,11 +108137,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -108734,11 +108515,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -108874,7 +108653,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": "\n22 | // Verify this IS a pooled buffer (byteLength < buffer.byteLength).\n23 | 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:23:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -109197,9 +108976,11 @@ "exit": 0 }, "bun": { - "pass": true, - "timeout": false, - "exit": 0 + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true }, "deno": { "pass": true, @@ -109224,11 +109005,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -109253,9 +109032,11 @@ "exit": 0 }, "bun": { - "pass": true, - "timeout": false, - "exit": 0 + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true }, "deno": { "pass": true, @@ -110123,11 +109904,9 @@ "exit": 0 }, "bun": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true + "pass": true, + "timeout": false, + "exit": 0 }, "deno": { "pass": true, @@ -110179,11 +109958,9 @@ "exit": 0 }, "bun": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true + "pass": true, + "timeout": false, + "exit": 0 }, "deno": { "pass": true, @@ -110235,11 +110012,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -110264,11 +110039,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -110293,9 +110066,11 @@ "exit": 0 }, "bun": { - "pass": true, - "timeout": false, - "exit": 0 + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true }, "deno": { "pass": true, @@ -110835,11 +110610,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -110864,11 +110637,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -111031,7 +110802,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 +111024,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 +111903,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 +111962,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.39ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [42.00ms]", "retried": true }, "deno": { @@ -112219,11 +111988,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, @@ -112419,7 +112186,7 @@ "pass": false, "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)", + "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-repl-envvars.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/repl\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -112502,7 +112269,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 +112418,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 +112449,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 +112480,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 +112617,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 +112978,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 +113063,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 +113146,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 +113260,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 +113376,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 +113434,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 +113681,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 +113770,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 +113879,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 +113992,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 +114047,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 +114101,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 +114158,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 +114184,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 +114214,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.54ms]\n\n1 tests failed:\n(fail) REPL tab completion (core functionality) > works with lexically scoped variables [1.54ms]\n\n 28 pass\n 1 fail\nRan 29 tests across 1 file. [72.00ms]", "retried": true }, "deno": { @@ -114540,7 +114299,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 +114415,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 +114473,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 +114502,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": { @@ -114805,7 +114564,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 +114622,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.56ms]\n1 | setImmediate(() => { throw new Error(\"testerror\") })\n ^\nerror: testerror\n at (REPL12:1:50)\n(fail) async: true, handleErrorReturn: badvalue [1.96ms]\n\n 4 pass\n 4 fail\nRan 8 tests across 1 file. [87.00ms]", "retried": true }, "deno": { @@ -114896,7 +114655,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 +115016,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": { @@ -115512,7 +115271,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. [31.00ms]", "retried": true }, "deno": { @@ -115621,11 +115380,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 +115437,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.56ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [30.00ms]", "retried": true }, "deno": { @@ -115711,7 +115468,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.74ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [58.00ms]", "retried": true }, "deno": { @@ -115742,7 +115499,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.53ms]", "retried": true }, "deno": { @@ -115775,7 +115532,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.92ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [50.00ms]", "retried": true }, "deno": { @@ -115837,9 +115594,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 +115625,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 +115660,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.60ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [54.00ms]", "retried": true }, "deno": { @@ -115934,7 +115691,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 [22.66ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [63.00ms]", "retried": true }, "deno": { @@ -115969,7 +115726,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:120: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 [6.61ms]\n\n 0 pass\n 6 fail\nRan 6 tests across 1 file. [82.00ms]", "retried": true }, "deno": { @@ -116004,7 +115761,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 [6.63ms]", "retried": true }, "deno": { @@ -116037,7 +115794,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": "Error: 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-runner-coverage.js:475: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.93ms]", "retried": true }, "deno": { @@ -116067,11 +115824,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 +115856,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 [25.01ms]", "retried": true }, "deno": { @@ -116134,7 +115889,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 [25.28ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [55.00ms]", "retried": true }, "deno": { @@ -116163,7 +115918,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. [27.00ms]", "retried": true }, "deno": { @@ -116225,7 +115980,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.19ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [42.00ms]", "retried": true }, "deno": { @@ -116260,7 +116015,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.79ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [28.00ms]", "retried": true }, "deno": { @@ -116293,7 +116048,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. [62.00ms]", "retried": true }, "deno": { @@ -116378,7 +116133,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 +116188,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 +116220,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 [10.60ms]", "retried": true }, "deno": { @@ -116529,7 +116282,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 [23.09ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [102.00ms]", "retried": true }, "deno": { @@ -116557,11 +116310,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 +116342,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 [21.45ms]", "retried": true }, "deno": { @@ -116620,9 +116371,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 +116404,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": { @@ -116748,7 +116499,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. [67.00ms]", "retried": true }, "deno": { @@ -116776,11 +116527,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 +116556,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 +116588,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 [22.34ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [49.00ms]", "retried": true }, "deno": { @@ -116870,7 +116617,7 @@ "pass": false, "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)", + "tail": "ite,\n79 | NumberIsNaN,\n80 | NumberMIN_SAFE_INTEGER,\n81 | ReflectApply,\n82 | Symbol,\n83 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/timers.js:83:5)\n at (/test/parallel/test-runner-mock-timers.js:11:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -116903,7 +116650,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.07ms]\n(pass) throws if object is null [0.04ms]\n(pass) local property mocks are auto restored after the test finishes [0.23ms]\n\n2 tests failed:\n(fail) mocks a constructor [1.61ms]\n(fail) method() fails if method cannot be redefined [0.26ms]\n\n 52 pass\n 2 fail\nRan 54 tests across 1 file. [37.00ms]", "retried": true }, "deno": { @@ -116934,7 +116681,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.36ms]", "retried": true }, "deno": { @@ -116965,7 +116712,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 +116743,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:86: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 [19.78ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [113.00ms]", "retried": true }, "deno": { @@ -117029,7 +116776,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": "root>\\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 [21.65ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [93.00ms]", "retried": true }, "deno": { @@ -117119,11 +116866,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 +116896,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 [527.70ms]\n(pass) test planning > with timeout > should fail when timeout expires before plan is met [526.81ms]\n(pass) test planning > with timeout > should handle wait:true option specifically [526.50ms]\n(pass) test planning > with timeout > should handle wait:false option (should not wait) [24.54ms]\n\n 14 pass\n 0 fail\nRan 14 tests across 1 file. [1.80s]", "retried": true }, "deno": { @@ -117182,7 +116927,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 [51.04ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [76.00ms]", "retried": true }, "deno": { @@ -117219,7 +116964,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 [7.56ms]", "retried": true }, "deno": { @@ -117249,11 +116994,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 +117024,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 [22.22ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [47.00ms]", "retried": true }, "deno": { @@ -117312,7 +117055,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": "T_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)\n(fail) require('node:test').run coverage settings > run with coverage > should run with coverage [0.16ms]", "retried": true }, "deno": { @@ -117374,7 +117117,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 [10.57ms]", "retried": true }, "deno": { @@ -117405,7 +117148,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. [8.00ms]", "retried": true }, "deno": { @@ -117471,7 +117214,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.14ms]", "retried": true }, "deno": { @@ -117502,7 +117245,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. [26.00ms]", "retried": true }, "deno": { @@ -117530,11 +117273,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 +117303,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,\n27 | StringPrototypePadStart,\n28 | StringPrototypeRepeat,\n29 | StringPrototypeSlice,\n30 | StringPrototypeSplit,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/utils.js:31: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 +117331,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 +117361,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 [24.19ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [259.00ms]", "retried": true }, "deno": { @@ -117655,7 +117394,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.45ms]\n\n 2 pass\n 3 fail\nRan 5 tests across 1 file. [128.00ms]", "retried": true }, "deno": { @@ -117685,11 +117424,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 +117455,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 +117486,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 +117515,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 +117544,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 +117578,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 +117611,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 [40.17ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [118.00ms]", "retried": true }, "deno": { @@ -117942,7 +117671,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 +117701,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 +117731,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. [22.00ms]", "retried": true }, "deno": { @@ -118034,11 +117761,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 +117791,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 +117824,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 [20.88ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [188.00ms]", "retried": true }, "deno": { @@ -118130,7 +117855,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. [40.00ms]", "retried": true }, "deno": { @@ -118250,7 +117975,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 +118006,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) [40.80ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [108.00ms]", "retried": true }, "deno": { @@ -118339,7 +118064,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 +118093,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 +118122,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 +118254,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 +118285,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 +118542,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 +118600,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.3767/snapshot.blob\"\n\n[process 87417]: --- stdout ---\n\n[process 87417]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3767\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3767/snapshot.blob --build-snapshot entry.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118906,7 +118631,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 +118662,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 87421]: --- stderr ---\nerror: Script not found \"node:embedded_snapshot_main\"\n\n[process 87421]: --- stdout ---\n\n[process 87421]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/.tmp.3769\",\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 +118693,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": "87424]: --- stdout ---\n\n[process 87424]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3770\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3770/snapshot.blob --build-snapshot /test/fixtures/snapshot/child-process-sync.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -118997,7 +118722,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 +118753,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 87428]: --- stdout ---\n\n[process 87428]: status = 1, signal = null\nerror: - stderr did not match /Cannot read snapshot configuration from snapshot\\.json/\n options: {\n cwd: \"/test/.tmp.3772\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3772/snapshot.blob --build-snapshot-config snapshot.json\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119059,7 +118784,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 +118815,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 87432]: --- stdout ---\n\n[process 87432]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3774\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3774/snapshot.blob --build-snapshot /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119121,7 +118846,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 87433]: --- stdout ---\n\n[process 87433]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3775\",\n encoding: \"utf8\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3775/snapshot.blob --build-snapshot /test/fixtures/snapshot/cwd.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119274,7 +118999,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 +119030,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 +119061,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 +119096,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 +119129,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 +119160,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 +119191,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 87456]: --- stdout ---\n\n[process 87456]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n cwd: \"/test/.tmp.3786\",\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 +119222,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 87457]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3787\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3787/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 +119253,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 87460]: --- stdout ---\n\n[process 87460]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3788\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --stack-trace-limit=50 --snapshot-blob /test/.tmp.3788/snapshot.blob --build-snapshot /test/fixtures/snapshot/error-stack.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119559,7 +119284,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 +119315,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 +119346,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.3791/snapshot.blob\"\n\n[process 87465]: --- stdout ---\n\n[process 87465]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3791\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3791/snapshot.blob --build-snapshot /test/fixtures/empty.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -119652,7 +119377,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 +119408,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.3793/snapshot.blob\"\\n'\n\n generatedMessage: true,\n actual: \"error: Module not found \\\"/test/.tmp.3793/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 +119576,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. [30.00ms]", "retried": true }, "deno": { @@ -119880,7 +119605,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 +119636,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 +119667,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.3802/source_map_1'\n path: \"/test/.tmp.3802/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 +119749,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 +119776,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 +119812,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 [6.00ms]\n\n 16 pass\n 1 fail\nRan 17 tests across 1 file. [49.00ms]", "retried": true }, "deno": { @@ -120117,11 +119838,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -120150,11 +119869,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 +119896,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 +119923,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 +119952,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 +119979,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 +120006,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, @@ -120328,11 +120035,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -120361,11 +120066,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 +120096,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": "input is false [0.56ms]\n(pass) options.allowBareNamedParameters > throws when input is not a boolean [0.74ms]\n(pass) options.allowBareNamedParameters > setAllowBareNamedParameters can override prepare option [0.97ms]\n\n1 tests failed:\n(fail) StatementSync.prototype.iterate() > iterator keeps the prepared statement from being collected [1.06ms]\n\n 44 pass\n 1 fail\nRan 45 tests across 1 file. [88.00ms]", "retried": true }, "deno": { @@ -120426,7 +120129,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": "on. (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:166:9)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) tag store prevents circular reference leaks [47.60ms]\n\n 9 pass\n 2 fail\nRan 11 tests across 1 file. [77.00ms]", "retried": true }, "deno": { @@ -120455,9 +120158,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 +120186,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 +120213,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 +120243,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": "R\"\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.17ms]\n\n 17 pass\n 4 fail\nRan 21 tests across 1 file. [55.00ms]", "retried": true }, "deno": { @@ -120606,7 +120305,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 +120336,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 +120367,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 +120668,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 +120886,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 +121158,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 +121405,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": { @@ -122423,11 +122122,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122456,11 +122153,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122489,11 +122184,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122522,11 +122215,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122555,11 +122246,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122588,11 +122277,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122737,11 +122424,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122770,11 +122455,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122834,11 +122517,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122956,11 +122637,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -122989,11 +122668,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123022,11 +122699,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "pus>/test/common/index.js:568:12)\n at applyStatefulSyncTransform (internal:streams/iter/pull:252:25)\n at createSyncPipeline (internal:streams/iter/pull:274:10)\n at pipeToSync (internal:streams/iter/pull:433:20)\n at testPipeToSyncWriterTransformMethodIgnored (/test/parallel/test-stream-iter-pipeto.js:165:3)\n at /test/parallel/test-stream-iter-pipeto.js:330:3", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123055,11 +122730,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123119,11 +122792,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123152,11 +122823,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123185,11 +122854,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123280,11 +122947,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123342,11 +123007,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123404,11 +123067,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123555,11 +123216,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123646,11 +123305,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123679,11 +123336,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -123712,11 +123367,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -124646,11 +124299,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -125750,11 +125401,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -126600,7 +126249,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 +126278,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 +126307,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": { @@ -128479,7 +128128,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 +128273,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 +128331,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 +128360,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 +128480,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.41ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [26.00ms]", "retried": true }, "deno": { @@ -128864,7 +128513,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 [12.92ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [38.00ms]", "retried": true }, "deno": { @@ -128895,7 +128544,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 [12.21ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [39.00ms]", "retried": true }, "deno": { @@ -128926,7 +128575,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 +128606,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": { @@ -129264,7 +128913,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 +128944,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 +128973,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 +129139,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 +129413,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-timers-nested.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129793,7 +129442,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-timers-next-tick.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -129876,7 +129525,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 +129554,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 +129610,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 +129636,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 +129693,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 +129722,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 +129888,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": { @@ -131070,11 +130717,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -131104,7 +130749,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 +131034,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 +131097,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 +131188,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 +131439,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 +131524,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 +131634,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 +131744,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 +132354,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 +132383,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 +132715,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 +133023,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 +133052,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 +133191,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 +133554,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 +133641,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 +133975,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 +134033,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 88944]: --- stdout ---\n\n[process 88944]: 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": { @@ -134526,11 +134169,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -134873,7 +134514,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 +134815,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": { @@ -135375,7 +135016,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 +135290,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:55819/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 +135375,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": { @@ -136207,7 +135848,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 +136074,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 +136294,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 +136325,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 +136439,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": { @@ -137343,7 +136984,7 @@ "pass": false, "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)", + "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-trace-events-get-category-enabled-buffer.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/test/binding\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [30.00ms]", "retried": true }, "deno": { @@ -137944,7 +137585,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 +137782,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 +137810,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 +137837,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 +137864,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 +137891,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 +137918,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 +137975,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": "rayPrototypeGetByteLength,\n32 | TypedArrayPrototypeGetByteOffset,\n33 | decodeURIComponent,\n34 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/url.js:34:5)\n at (/test/parallel/test-url-is-url-internal.js:8:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -138399,11 +138030,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 +138060,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 +138201,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 +138230,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 +138261,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": { @@ -138662,11 +138291,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " true,\n actual: [ \"inputs\", \"protocol\", \"username\", \"password\", \"hostname\", \"port\", \"pathname\", \"search\", \"hash\" ],\n expected: [ \"hash\", \"hostname\", \"inputs\", \"password\", \"pathname\", \"port\", \"protocol\", \"search\", \"username\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-urlpattern.js:34:10\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -138725,7 +138352,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 +138437,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-util-deprecate.js:10:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -138839,7 +138466,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-util-emit-experimental-warning.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139248,11 +138875,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 +138905,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 +138961,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 +138990,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-util-promisify.js:8:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139396,7 +139021,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": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-util-sigint-watchdog.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/test/binding\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [30.00ms]", "retried": true }, "deno": { @@ -139427,7 +139052,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/parallel/test-util-sleep.js:5:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -139455,11 +139080,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 +139107,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 +139165,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 +139253,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 +139282,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 +139369,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": { @@ -139926,7 +139545,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.4498/cov_1'\n path: \"/test/.tmp.4498/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 +139576,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 +139775,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 +139808,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 +139953,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 +140013,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 +140044,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 +140500,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 89371]: --- stderr ---\nerror: No such built-in module: node:vfs\n\nBun v1.4.0 (macOS arm64)\n\n[process 89371]: --- stdout ---\n\n[process 89371]: 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 +141853,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": { @@ -143092,7 +142711,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 +143041,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 +143429,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 +143485,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 +144176,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 +144234,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 +144323,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 +144878,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 +144907,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 +144965,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 +145046,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 +145073,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 +145103,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 [1.68ms]\n\n 2 pass\n 2 fail\nRan 4 tests across 1 file. [32.00ms]", "retried": true }, "deno": { @@ -145523,7 +145132,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.60ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [29.00ms]", "retried": true }, "deno": { @@ -146328,7 +145937,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 +146047,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 +146215,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:55928/9a9e45b1-a46d-4646-9c7d-e756a2893900\nInspect in browser:\n https://debug.bun.sh/#localhost:55928/9a9e45b1-a46d-4646-9c7d-e756a2893900\n--------------------- Bun Inspector ---------------------", "retried": true }, "deno": { @@ -146718,7 +146327,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. [21.00ms]", "retried": true }, "deno": { @@ -146780,7 +146389,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. [23.00ms]", "retried": true }, "deno": { @@ -146925,7 +146534,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": "t 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 [8.49ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [44.00ms]", "retried": true }, "deno": { @@ -146956,7 +146565,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": "\n 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.13ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [58.00ms]", "retried": true }, "deno": { @@ -146985,7 +146594,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:127:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [28.00ms]", "retried": true }, "deno": { @@ -147074,7 +146683,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": "6 | ObjectPrototypeHasOwnProperty,\n 7 | ObjectSetPrototypeOf,\n 8 | SafeSet,\n 9 | SymbolToStringTag,\n10 | Uint8Array,\n11 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/keys.js:11: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 +146716,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": { @@ -147462,11 +147071,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "_ATTRIBUTE_ERR: 10,\n INVALID_STATE_ERR: 11,\n SYNTAX_ERR: 12,\n INVALID_MODIFICATION_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}", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -147529,7 +147136,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:371", "retried": true }, "deno": { @@ -147562,7 +147169,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": { @@ -147623,11 +147230,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -147935,11 +147540,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -147968,11 +147571,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -148093,7 +147694,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 +147758,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": { @@ -148282,11 +147883,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "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 testSmallOrderVerify (/test/parallel/test-webcrypto-sign-verify-eddsa.js:51:10)\n at /test/parallel/test-webcrypto-sign-verify-eddsa.js:305:17", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -148504,7 +148103,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 +148136,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": "5 | MathPow,\n 6 | NumberParseInt,\n 7 | ObjectPrototypeHasOwnProperty,\n 8 | StringPrototypeStartsWith,\n 9 | StringPrototypeToLowerCase,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/webidl.js:10:5)\n at (/test/parallel/test-webcrypto-webidl.js:10:7)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -148570,7 +148169,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:427:16", "retried": true }, "deno": { @@ -148603,7 +148202,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 +148260,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 +148289,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": "ge: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webstorage.js:138: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 [22.68ms]\n\n 1 pass\n 8 fail\nRan 9 tests across 1 file. [162.00ms]", "retried": true }, "deno": { @@ -148783,7 +148382,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 +148440,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 [1.43ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", "retried": true }, "deno": { @@ -148897,7 +148496,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. [32.00ms]", "retried": true }, "deno": { @@ -148923,11 +148522,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 +148554,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 +148609,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 +148636,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 +148665,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, @@ -149303,7 +148894,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 +148925,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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 +149120,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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 +149148,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 +149342,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": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17:5)\n at (/test/parallel/test-whatwg-readablebytestream.js:16:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149811,7 +149400,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": "26 | SymbolDispose,\n27 | SymbolIterator,\n28 | SymbolToStringTag,\n29 | TypedArrayPrototypeGetLength,\n30 | Uint8Array,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:31:5)\n at (/test/parallel/test-whatwg-readablestream.js:35:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -149868,11 +149457,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 +149487,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 +149518,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 +149682,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": { @@ -150155,7 +149742,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " new URLSearchParams([[1]]), tupleError);\n ^\nTypeError: Type error\n at (/test/parallel/test-whatwg-url-custom-searchparams-constructor.js:50:23)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-constructor.js:50:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "l);\n32 | assert.strictEqual(params.toString(), '');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'null=' !== ''\n\n generatedMessage: true,\n actual: \"null=\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-whatwg-url-custom-searchparams-constructor.js:32:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150273,7 +149860,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 +149918,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 +149947,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 +149976,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 +150005,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 +150200,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 +150287,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 +150351,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 +150384,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 +150415,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 +150446,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 +150477,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 +150510,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 +150541,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": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17:5)\n at (/test/parallel/test-whatwg-webstreams-coverage.js:16:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150985,7 +150572,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 +150603,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,\n29 | TypedArrayPrototypeGetLength,\n30 | Uint8Array,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:31: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. [41.00ms]", "retried": true }, "deno": { @@ -151075,11 +150662,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 +150692,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": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17:5)\n at (/test/parallel/test-whatwg-writablestream.js:17:3)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -151245,11 +150830,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 +150889,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 +150920,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 +151061,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 +151204,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 +151378,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": { @@ -151857,7 +151440,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 +151548,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 +151635,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 +152002,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 +152031,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": "eelist';\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 [7.85ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [89.00ms]", "retried": true }, "deno": { @@ -152533,7 +152116,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: 2153514,\n external: 866922,\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 +152479,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 +152564,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 +152730,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 +152761,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 +152792,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 +152823,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 +153047,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 +153078,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 +153858,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": { @@ -154362,7 +153945,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "mum call stack size exceeded\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/common/index.js:743:12\n at runWorker (/test/parallel/test-worker-stack-overflow-stack-size.js:39:6)\n at /test/parallel/test-worker-stack-overflow-stack-size.js:48:27\n at processTicksAndRejections (native:7:39)\n\nSyntaxError: Unexpected %", + "tail": "blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)", "retried": true }, "deno": { @@ -154393,7 +153976,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 +154636,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 +154829,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 +154858,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 +154887,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 +154916,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 +154945,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": { @@ -156136,11 +155719,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 +156056,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": { @@ -156723,11 +156304,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -156756,11 +156335,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -156790,7 +156367,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 103895 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 +156447,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 +156528,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, @@ -156982,11 +156555,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -157125,11 +156696,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -157219,7 +156788,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 +156887,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 +156922,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 +156956,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 +157222,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 +157320,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 +157523,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 +157557,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 +157590,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 +157752,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 +157785,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": { @@ -158698,7 +158267,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.5077/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 +158470,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 +158501,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 +158532,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 +158594,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 +158625,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 +158656,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 +158687,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 +158840,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 +159394,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 +159423,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 +159688,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 +159750,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 [25.54ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [101.00ms]", "retried": true }, "deno": { @@ -160441,7 +160010,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 +160101,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 +160134,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 +160167,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 +160200,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 +160233,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 +160266,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 +160299,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 +160708,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 92608]: --- stdout ---\n\n[process 92608]: 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.5160\",\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 +160739,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 92620]: --- stdout ---\n\n[process 92620]: 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.5161\",\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 +161256,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 92702]: --- stdout ---\n\n[process 92702]: 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.5180\",\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 +161287,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 +161318,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 +161405,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 +161485,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 +161515,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 +161577,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 +161863,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 +162039,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 +162070,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": { @@ -162556,11 +162123,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "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)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -162621,7 +162186,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 +162217,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 +162422,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 +162453,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 +162484,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 +162627,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 +162685,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 +162714,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 +162745,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 +162776,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 +162807,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 +163276,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": { @@ -163802,7 +163367,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 +163536,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 +163703,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. [82.00ms]", "retried": true }, "deno": { @@ -164205,7 +163763,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 +163794,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/sequential/test-performance-eventloopdelay.js:10:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164323,7 +163881,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 +163912,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 +163970,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 +163999,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 +164084,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50:5)\n at (/test/sequential/test-timers-block-eventloop.js:6:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -164555,7 +164113,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": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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 +164139,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 +164370,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 +164434,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 +164465,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 +164498,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 +164533,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 +164649,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 +164680,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 14045]: --- stdout ---\nfiles found in working directory before worker starts []\n\n[process 14045]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.5469\",\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 +164709,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 +164740,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 +164800,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 [14.38ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [188.00ms]", "retried": true }, "deno": { @@ -165281,7 +164837,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:56260/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 [33.21ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [140.00ms]", "retried": true }, "deno": { @@ -165318,7 +164874,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": "ath: \"https://localhost:56268/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 [40.33ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [104.00ms]", "retried": true }, "deno": { @@ -165355,7 +164911,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 +165002,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:56274/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 [37.54ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [122.00ms]", "retried": true }, "deno": { @@ -165483,7 +165039,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 [38.54ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [131.00ms]", "retried": true }, "deno": { @@ -165516,7 +165072,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": "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)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -165580,7 +165136,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": "rnal-frames>\\n ...\\n1..2\\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)", "retried": true }, "deno": { @@ -165708,7 +165264,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:292: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 +165324,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 +165353,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 +165603,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:292: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 +165632,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:292: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 +165888,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 +165919,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 +165979,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 +166010,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 +166041,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 +166072,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 +166134,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 +166196,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 +166258,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 +166318,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": { @@ -166890,7 +166446,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 +166506,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 +166537,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": { @@ -167074,7 +166630,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- ' 1..4\\n' +\n- 'ok 9 - nested tests with run only\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '1..9\\n' +\n- '# tests 28\\n' +\n- '# suites 7\\n' +\n- '# pass 24\\n' +\n- '# fail 0\\n' +\n- '# cancelled 0\\n' +\n- '# skipped 4\\n' +\n- '# todo 0\\n' +\n- '# duration_ms *\\n'", + "tail": "n duration_ms: *\\n type: 'test'\\n ...\\n 1..1\\n ok 1 - nested describe\\n ---\\n duration_ms: *\\n type: 'suite'\\n ...\\n 1..1\\nok 7 - describe only = undefined, with nested only subtest\\n ---\\n duration_ms: *\\n type: 'suite'\\n ...\\n# Subtest: describe only = true, with nested subtests\\n # Subtest: async subtest should run\\n ok 1 - a", "retried": true }, "deno": { @@ -167105,7 +166661,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ' ...\\n' +\n- '# Subtest: sync t is this in test\\n' +\n- 'ok 45 - sync t is this in test\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '# Subtest: async t is this in test\\n' +\n- 'ok 46 - async t is this in test\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '# Subtest: cal'... 11708 more characters", + "tail": "uration_ms: *\\n type: 'test'\\n ...\\n 1..1\\n ok 2 - +short running\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n 1..2\\nok 30 - top level\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n# Subtest: invalid subtest - pass but subtest fails\\nok 31 - invalid subtest - pass but subtest fails\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n# Subtest: sy", "retried": true }, "deno": { @@ -167171,7 +166727,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(*ms)\\n' +\n- ' ✔ mixed-await-normal 3 (*ms)\\n' +\n- ' ✔ mixed-await-normal block (*ms)\\n' +\n- ' ✔ scenario mixed-await-normal (*ms)\\n' +\n- '✔ nested-scenarios (*ms)\\n' +\n- 'ℹ Randomized test order seed: 1\\n' +\n- 'ℹ tests 144\\n' +\n- 'ℹ suites 12\\n' +\n- 'ℹ pass 144\\n' +\n- 'ℹ fail 0\\n' +\n- 'ℹ cancelled 0\\n' +\n- 'ℹ skipped 0\\n' +\n- 'ℹ todo 0\\n' +\n- 'ℹ duration_ms *\\n'", + "tail": "sts 144\\nℹ suites 12\\nℹ pass 144\\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 +166890,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 +167109,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": { @@ -167582,7 +167138,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "' require the --test-only command-line option.\\n 1..1\\n ok 1 - only true in parent test\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n 1..1\\nok 9 - should print --test-only diagnostic warning - 2 levels of only\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n1..9\\n# tests 16\\n# suites 3\\n# pass 16\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",", + "tail": " tests 16\\n# suites 3\\n# pass 16\\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": { @@ -167613,7 +167169,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": { @@ -167706,7 +167262,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 +167293,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": { @@ -167923,7 +167479,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 +167508,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. [127.00ms]", "retried": true }, "deno": { @@ -167981,7 +167537,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 +167752,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": "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-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [52.00ms]", "retried": true }, "deno": { @@ -168256,7 +167812,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": "scovery 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. [30.00ms]", "retried": true }, "deno": { @@ -168849,7 +168405,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": "eneratedMessage: 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 [0.07ms]\n(pass) validMappingEmptyGroups", "retried": true }, "deno": { @@ -168909,7 +168465,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 96685]: --- stdout ---\n\n[process 96685]: 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 +168494,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 96740]: --- stdout ---\n\n[process 96740]: 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 +168523,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 96747]: --- stdout ---\n\n[process 96747]: 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 +168552,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 96787]: --- stdout ---\n\n[process 96787]: 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 +168581,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 96792]: --- stdout ---\n\n[process 96792]: 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 +168610,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 96833]: --- stdout ---\n\n[process 96833]: 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 +168639,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 96832]: --- stdout ---\n\n[process 96832]: 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 +168668,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 96841]: --- stdout ---\n\n[process 96841]: 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 +168697,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 +168726,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 96858]: --- stdout ---\n\n[process 96858]: 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 +168755,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 96864]: --- stdout ---\n\n[process 96864]: 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 +168784,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 +168813,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 96877]: --- stdout ---\n\n[process 96877]: 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 +168842,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 +168871,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 96904]: --- stdout ---\n\n[process 96904]: 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 +168900,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 96905]: --- stdout ---\n\n[process 96905]: 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 +168929,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 96921]: --- stdout ---\n\n[process 96921]: 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 +168958,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 96920]: --- stdout ---\n\n[process 96920]: 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 +168987,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 96949]: --- stdout ---\n\n[process 96949]: 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 +169016,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 +169045,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 96957]: --- stdout ---\n\n[process 96957]: 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 +169074,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 +169103,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 +169161,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 96988]: --- stdout ---\n\n[process 96988]: 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 +169190,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 +169219,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 +169252,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 +169289,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": { @@ -169824,7 +169380,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 3 unexpected failures. Consider updating test/wpt/status/FileAPI/blob.cjs for these files:\nBlob-stream.any.js\nBlob-constructor.any.js\nBlob-slice.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/FileAPI/blob.cjs for these files:\nBlob-stream.any.js\nBlob-slice.any.js\nBlob-constructor.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -169857,7 +169413,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 +169475,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 +169506,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:\nstreams/backpressure.any.js\nidlharness.any.js\nencodeInto.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -169981,7 +169537,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 +169568,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 +169599,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.json for these files:\nidlharness.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170103,7 +169659,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\nidlharness.any.js\ncase-sensitivity.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170134,7 +169690,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 +169812,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": " `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 4 unexpected failures. Consider updating test/wpt/status/url.cjs for these files:\nurl-setters.any.js\nurlencoded-parser.any.js\nurl-origin.any.js\nIdnaTestV2.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170289,7 +169845,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/urlpattern.json for these files:\nurlpattern.any.js\nurlpattern.https.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/urlpattern.json for these files:\nurlpattern.https.any.js\nurlpattern.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170322,7 +169878,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 +169909,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": "js\nesm-integration/reserved-import-names.tentative.any.js\nesm-integration/source-phase-string-constants.tentative.any.js\nesm-integration/mutable-global-sharing.tentative.any.js\nesm-integration/js-wasm-cycle.tentative.any.js\nesm-integration/source-phase.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 +170002,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": "entative.https.any.js\nidlharness.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/rsa_oaep.https.any.js\nencrypt_decrypt/aes_ctr.https.any.js\nencrypt_decrypt/aes_gcm_256_iv.https.any.js\nsupports-modern.tentative.https.any.js\nidlharness.https.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -170481,7 +170037,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/es-exceptions/DOMException-custom-bindings.any.js\necmascript-binding/global-object-implicit-this-value.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)", "retried": true }, "deno": { diff --git a/tests/cross-runtime/run.mjs b/tests/cross-runtime/run.mjs index df5a945f1..06343a62f 100644 --- a/tests/cross-runtime/run.mjs +++ b/tests/cross-runtime/run.mjs @@ -400,7 +400,35 @@ 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) { + const args = ["test", `--timeout=${timeoutFor(relPath)}`, path.join(SUITE, testPath)]; + return { bin: BINS[runtime], args, env }; + } + } return { bin: BINS[runtime], args: [...nodeFlagArgs(tokens), testPath], env }; } From 61a3c87a9afba0762953ff0211436b05c0f08b8d Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 18:15:12 -0700 Subject: [PATCH 2/9] cross-runtime: carry a node:test file's Flags tokens onto the bun test path Review findings: the bun test invocation dropped nodeFlagArgs, unlike the plain path and deno's test path, and the README retry sentence contradicted the committed meta.retried. bun test skips unrecognized long flags (probed with a passing control plus a bogus flag), so the tokens ride along safely. Re-ran the 66 flagged node:test files: 3 verdicts flip to pass, none flip to fail. Tables and site figures regenerated from the merged results. --- site/content/blog/introducing-nub.mdx | 2 +- site/src/app/(home)/page.tsx | 2 +- tests/cross-runtime/README.md | 10 +- tests/cross-runtime/results.json | 151 ++++++++++++-------------- tests/cross-runtime/run.mjs | 6 +- 5 files changed, 83 insertions(+), 88 deletions(-) diff --git a/site/content/blog/introducing-nub.mdx b/site/content/blog/introducing-nub.mdx index 5033a61bb..3f0b6fcc4 100644 --- a/site/content/blog/introducing-nub.mdx +++ b/site/content/blog/introducing-nub.mdx @@ -33,7 +33,7 @@ Bun and Deno proved there's enormous appetite for an all-in-one toolkit that rep ## Introducing Nub -Nub embraces it instead. It's a single Rust binary that transpiles your code and executes it on the stock `node` your project pins — so the runtime underneath *is* Node. On Node 26.7's own test suite, scored the way Deno's compatibility corpus scores it, it clears 98.5% of what real Node passes, versus 74.2% for Deno 2.9 and 70.7% for Bun 1.4. It combines: +Nub embraces it instead. It's a single Rust binary that transpiles your code and executes it on the stock `node` your project pins — so the runtime underneath *is* Node. On Node 26.7's own test suite, scored the way Deno's compatibility corpus scores it, it clears 98.5% of what real Node passes, versus 74.2% for Deno 2.9 and 70.8% for Bun 1.4. It combines: ```console $ nub index.ts # file runner — full TypeScript, on stock Node diff --git a/site/src/app/(home)/page.tsx b/site/src/app/(home)/page.tsx index cd0f42052..4ea856a93 100644 --- a/site/src/app/(home)/page.tsx +++ b/site/src/app/(home)/page.tsx @@ -955,7 +955,7 @@ const COMPAT = [ { name: 'Node 26.7', rate: 100, tests: '5,046 / 5,046', us: false, dim: false }, { name: 'Nub', rate: 98.5, tests: '4,968 / 5,046', us: true, dim: false }, { name: 'Deno 2.9', rate: 74.2, tests: '3,742 / 5,046', us: false, dim: true }, - { name: 'Bun 1.4', rate: 70.7, tests: '3,570 / 5,046', us: false, dim: true }, + { name: 'Bun 1.4', rate: 70.8, tests: '3,573 / 5,046', us: false, dim: true }, ]; function Compatibility() { diff --git a/tests/cross-runtime/README.md b/tests/cross-runtime/README.md index 2a882615b..23b64da3e 100644 --- a/tests/cross-runtime/README.md +++ b/tests/cross-runtime/README.md @@ -23,7 +23,7 @@ This harness runs Node's own test suite — the whole `test/` tree of a Node rel The nub binary is a release build of `main` at `e78a6701dd` plus the `NODE_OPTIONS` coverage-exclude change committed beside this results file. This table and the results table below are generated from `results.json` by [`readme-table.mjs`](./readme-table.mjs). -macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 4 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`): 161 files flipped to pass and 20 flipped to fail — the latter had been exiting 0 before their `'exit'`-handler assertions ran. +macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 1 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`): 164 files flipped to pass and 20 flipped to fail — the latter had been exiting 0 before their `'exit'`-handler assertions ran. ## Reproduce it yourself @@ -80,12 +80,12 @@ Node-relative pass rate (raw in parentheses). The rows are generated from `resul | 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) | 70.75% (70.44) | 90.15% (89.62) | -| `bunUniverse` | 4,760 / 4,736 | **98.16%** (97.67) | 71.75% (71.49) | 72.68% (72.44) | 89.55% (89.12) | -| `fullCorpus` | 5,664 / 5,616 | **97.40%** (96.61) | 68.07% (67.67) | 66.33% (65.96) | 89.96% (89.23) | +| `denoExclusions` | 5,078 / 5,046 | **98.45%** (97.87) | 74.16% (73.89) | 70.81% (70.50) | 90.15% (89.62) | +| `bunUniverse` | 4,760 / 4,736 | **98.16%** (97.67) | 71.75% (71.49) | 72.74% (72.50) | 89.55% (89.12) | +| `fullCorpus` | 5,664 / 5,616 | **97.40%** (96.61) | 68.07% (67.67) | 66.38% (66.01) | 89.96% (89.23) | | `fullCorpusNoEngine` | 4,946 / 4,904 | **97.37%** (96.58) | 71.66% (71.25) | 72.21% (71.82) | 90.03% (89.30) | | `bunUniverseNoEngine` | 4,111 / 4,091 | **98.22%** (97.74) | 76.04% (75.80) | 79.93% (79.69) | 89.54% (89.13) | -| `engineSpecificOnly` | 718 / 712 | **97.61%** (96.80) | 43.40% (43.04) | 25.84% (25.63) | 89.47% (88.72) | +| `engineSpecificOnly` | 718 / 712 | **97.61%** (96.80) | 43.40% (43.04) | 26.26% (26.04) | 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). diff --git a/tests/cross-runtime/results.json b/tests/cross-runtime/results.json index 1f57db010..cfe88d261 100644 --- a/tests/cross-runtime/results.json +++ b/tests/cross-runtime/results.json @@ -1,6 +1,6 @@ { "meta": { - "generatedAt": "2026-08-31T00:54:18.576Z", + "generatedAt": "2026-08-31T01:14:12.905Z", "platform": "darwin", "corpus": "", "corpusNodeVersion": "27.0.0", @@ -39,7 +39,7 @@ "mergeRetryFailures": true, "retried": { "bun": { - "retried": 1929, + "retried": 1926, "flippedToPass": 1 }, "node": { @@ -63,10 +63,10 @@ "perRuntime": [ { "runtime": "bun", - "pass": 3736, - "fail": 1928, + "pass": 3739, + "fail": 1925, "timeout": 123, - "pct": 65.96 + "pct": 66.01 }, { "runtime": "node", @@ -104,10 +104,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3570, - "pct": 70.75, - "rawPass": 3577, - "rawPct": 70.44 + "pass": 3573, + "pct": 70.81, + "rawPass": 3580, + "rawPct": 70.5 }, { "runtime": "node", @@ -145,10 +145,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3442, - "pct": 72.68, - "rawPass": 3448, - "rawPct": 72.44 + "pass": 3445, + "pct": 72.74, + "rawPass": 3451, + "rawPct": 72.5 }, { "runtime": "node", @@ -186,10 +186,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3725, - "pct": 66.33, - "rawPass": 3736, - "rawPct": 65.96 + "pass": 3728, + "pct": 66.38, + "rawPass": 3739, + "rawPct": 66.01 }, { "runtime": "node", @@ -309,10 +309,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 184, - "pct": 25.84, - "rawPass": 184, - "rawPct": 25.63 + "pass": 187, + "pct": 26.26, + "rawPass": 187, + "rawPct": 26.04 }, { "runtime": "node", @@ -720,10 +720,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3373, - "pct": 73.04, - "rawPass": 3379, - "rawPct": 72.81 + "pass": 3376, + "pct": 73.11, + "rawPass": 3382, + "rawPct": 72.87 }, { "runtime": "node", @@ -2546,7 +2546,6 @@ "parallel/test-readline-async-iterators.js", "parallel/test-repl-custom-eval-previews.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", @@ -2609,7 +2608,6 @@ "parallel/test-runner-log.mjs", "parallel/test-runner-misc.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", @@ -2763,7 +2761,6 @@ "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", @@ -12933,7 +12930,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [19.21ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [65.00ms]", + "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 [23.07ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [85.00ms]", "retried": true }, "deno": { @@ -12964,7 +12961,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [23.00ms]", + "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. [35.00ms]", "retried": true }, "deno": { @@ -14144,7 +14141,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.37ms]\n(pass) extensionless Wasm within no package scope > should run on import [0.16ms]\n\n 6 pass\n 4 fail\nRan 10 tests across 1 file. [88.00ms]", + "tail": "e/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 [22.91ms]\n(pass) extensionless Wasm within no package scope > should run on import [0.19ms]\n\n 6 pass\n 4 fail\nRan 10 tests across 1 file. [115.00ms]", "retried": true }, "deno": { @@ -17099,7 +17096,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [2.65ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [29.00ms]", + "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. [5.25ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [41.00ms]", "retried": true }, "deno": { @@ -25094,7 +25091,7 @@ "pass": false, "timeout": false, "exit": 1, - "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]", + "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. [33.00ms]", "retried": true }, "deno": { @@ -25125,7 +25122,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "active listener [12.26ms]\n(pass) Setting a long timeout should not keep the process open [0.06ms]\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.06ms]\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]", + "tail": "active listener [12.26ms]\n(pass) Setting a long timeout should not keep the process open [0.06ms]\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.03ms]\n\n 15 pass\n 4 fail\nRan 19 tests across 1 file. [88.00ms]", "retried": true }, "deno": { @@ -25156,7 +25153,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [6.09ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [36.00ms]", + "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 [7.47ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [42.00ms]", "retried": true }, "deno": { @@ -25251,7 +25248,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [20.30ms]\n\n 1 pass\n 5 fail\nRan 6 tests across 1 file. [101.00ms]", + "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 [41.21ms]\n\n 1 pass\n 5 fail\nRan 6 tests across 1 file. [141.00ms]", "retried": true }, "deno": { @@ -25284,7 +25281,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-accessor-properties.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/test/binding\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [28.00ms]", + "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. [49.00ms]", "retried": true }, "deno": { @@ -29928,7 +29925,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [27.00ms]", + "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. [50.00ms]", "retried": true }, "deno": { @@ -32879,7 +32876,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [29.00ms]", + "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. [54.00ms]", "retried": true }, "deno": { @@ -36648,7 +36645,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "peGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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]", + "tail": "peGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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. [47.00ms]", "retried": true }, "deno": { @@ -41348,7 +41345,7 @@ "pass": false, "timeout": false, "exit": 1, - "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]", + "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. [39.00ms]", "retried": true }, "deno": { @@ -87440,7 +87437,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.34ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [33.00ms]", + "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 [2.62ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [43.00ms]", "retried": true }, "deno": { @@ -87500,7 +87497,7 @@ "pass": false, "timeout": false, "exit": 1, - "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]", + "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. [40.00ms]", "retried": true }, "deno": { @@ -87529,7 +87526,7 @@ "pass": false, "timeout": false, "exit": 1, - "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]", + "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. [51.00ms]", "retried": true }, "deno": { @@ -89218,7 +89215,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [26.00ms]", + "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. [48.00ms]", "retried": true }, "deno": { @@ -96323,7 +96320,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.52ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [29.00ms]", + "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.77ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [55.00ms]", "retried": true }, "deno": { @@ -112183,11 +112180,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-repl-envvars.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/repl\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -116015,7 +116010,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.79ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [28.00ms]", + "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.67ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [53.00ms]", "retried": true }, "deno": { @@ -116614,11 +116609,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ite,\n79 | NumberIsNaN,\n80 | NumberMIN_SAFE_INTEGER,\n81 | ReflectApply,\n82 | Symbol,\n83 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/timers.js:83:5)\n at (/test/parallel/test-runner-mock-timers.js:11:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -117245,7 +117238,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [26.00ms]", + "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. [37.00ms]", "retried": true }, "deno": { @@ -117731,7 +117724,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [22.00ms]", + "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. [29.00ms]", "retried": true }, "deno": { @@ -119576,7 +119569,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [30.00ms]", + "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. [35.00ms]", "retried": true }, "deno": { @@ -119812,7 +119805,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [6.00ms]\n\n 16 pass\n 1 fail\nRan 17 tests across 1 file. [49.00ms]", + "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 [4.63ms]\n\n 16 pass\n 1 fail\nRan 17 tests across 1 file. [56.00ms]", "retried": true }, "deno": { @@ -120096,7 +120089,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "input is false [0.56ms]\n(pass) options.allowBareNamedParameters > throws when input is not a boolean [0.74ms]\n(pass) options.allowBareNamedParameters > setAllowBareNamedParameters can override prepare option [0.97ms]\n\n1 tests failed:\n(fail) StatementSync.prototype.iterate() > iterator keeps the prepared statement from being collected [1.06ms]\n\n 44 pass\n 1 fail\nRan 45 tests across 1 file. [88.00ms]", + "tail": "input is false [0.93ms]\n(pass) options.allowBareNamedParameters > throws when input is not a boolean [1.07ms]\n(pass) options.allowBareNamedParameters > setAllowBareNamedParameters can override prepare option [2.13ms]\n\n1 tests failed:\n(fail) StatementSync.prototype.iterate() > iterator keeps the prepared statement from being collected [0.56ms]\n\n 44 pass\n 1 fail\nRan 45 tests across 1 file. [96.00ms]", "retried": true }, "deno": { @@ -120129,7 +120122,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "on. (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:166:9)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) tag store prevents circular reference leaks [47.60ms]\n\n 9 pass\n 2 fail\nRan 11 tests across 1 file. [77.00ms]", + "tail": "on. (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:166:9)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) tag store prevents circular reference leaks [40.53ms]\n\n 9 pass\n 2 fail\nRan 11 tests across 1 file. [91.00ms]", "retried": true }, "deno": { @@ -128480,7 +128473,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.41ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [26.00ms]", + "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.65ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [43.00ms]", "retried": true }, "deno": { @@ -136981,11 +136974,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-trace-events-get-category-enabled-buffer.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/test/binding\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [30.00ms]", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -137975,7 +137966,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rayPrototypeGetByteLength,\n32 | TypedArrayPrototypeGetByteOffset,\n33 | decodeURIComponent,\n34 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/url.js:34:5)\n at (/test/parallel/test-url-is-url-internal.js:8:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [29.00ms]", + "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 [1.35ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [46.00ms]", "retried": true }, "deno": { @@ -139021,7 +139012,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "bun test v1.4.0 (34cbb9a40)\n\n\ntest/parallel/test-util-sigint-watchdog.js:\n\n# Unhandled error between tests\n-------------------------------\nerror: ENOENT reading \"internal/test/binding\"\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [30.00ms]", + "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. [41.00ms]", "retried": true }, "deno": { @@ -145103,7 +145094,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [1.68ms]\n\n 2 pass\n 2 fail\nRan 4 tests across 1 file. [32.00ms]", + "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 [1.55ms]\n\n 2 pass\n 2 fail\nRan 4 tests across 1 file. [42.00ms]", "retried": true }, "deno": { @@ -145132,7 +145123,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.60ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [29.00ms]", + "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 [1.65ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [41.00ms]", "retried": true }, "deno": { @@ -146327,7 +146318,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [21.00ms]", + "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. [29.00ms]", "retried": true }, "deno": { @@ -146389,7 +146380,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [23.00ms]", + "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. [36.00ms]", "retried": true }, "deno": { @@ -146565,7 +146556,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n 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.13ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [58.00ms]", + "tail": "\n 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.30ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [83.00ms]", "retried": true }, "deno": { @@ -146594,7 +146585,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:127:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [28.00ms]", + "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:127:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [43.00ms]", "retried": true }, "deno": { @@ -148496,7 +148487,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [32.00ms]", + "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. [52.00ms]", "retried": true }, "deno": { @@ -150603,7 +150594,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ringTag,\n29 | TypedArrayPrototypeGetLength,\n30 | Uint8Array,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:31: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. [41.00ms]", + "tail": "ringTag,\n29 | TypedArrayPrototypeGetLength,\n30 | Uint8Array,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:31: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. [48.00ms]", "retried": true }, "deno": { @@ -164800,7 +164791,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [14.38ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [188.00ms]", + "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 [5.00ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [215.00ms]", "retried": true }, "deno": { @@ -164874,7 +164865,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ath: \"https://localhost:56268/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 [40.33ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [104.00ms]", + "tail": "th: \"https://localhost:60106/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 [165.26ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [201.00ms]", "retried": true }, "deno": { @@ -165002,7 +164993,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "://localhost:56274/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 [37.54ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [122.00ms]", + "tail": "//localhost:60114/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 [171.33ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [211.00ms]", "retried": true }, "deno": { @@ -165039,7 +165030,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [38.54ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [131.00ms]", + "tail": "\n 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 [20.15ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [53.00ms]", "retried": true }, "deno": { diff --git a/tests/cross-runtime/run.mjs b/tests/cross-runtime/run.mjs index 06343a62f..3ff842354 100644 --- a/tests/cross-runtime/run.mjs +++ b/tests/cross-runtime/run.mjs @@ -425,7 +425,11 @@ function buildPlainCommand(runtime, relPath, source, serialId) { const registersTests = /(?:^|[^.\w])(?:test|it|describe|suite)\s*[.(]/m.test(source); const isRunDriver = importsRun && !registersAtColumnZero && (!registersTests || source.includes("NODE_TEST_CONTEXT")); if (!isRunDriver) { - const args = ["test", `--timeout=${timeoutFor(relPath)}`, path.join(SUITE, testPath)]; + // 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 }; } } From 1b5017bf85ded0f69a8d30e8386bbeb51e3e4f0a Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 19:25:56 -0700 Subject: [PATCH 3/9] cross-runtime: re-measure bun on the v26.7.0 corpus; guard merges against corpus drift The earlier re-measures ran against a drifted tests/node-suite checkout (a Node nightly), so 174 names missing from that tree kept pre-accommodation verdicts and the re-run's sources did not match the other runtimes'. The submodule is restored to the recorded v26.7.0 commit and bun re-measured in one full pass over it: 99 verdicts flip to pass, none to fail, and no other runtime's record changes. run.mjs now stamps a -nightly suffix when NODE_VERSION_IS_RELEASE is 0 and refuses a --merge whose corpus commit differs from the prior file's. Tables and site figures regenerated. --- site/content/blog/introducing-nub.mdx | 2 +- site/src/app/(home)/page.tsx | 2 +- tests/cross-runtime/README.md | 14 +- tests/cross-runtime/results.json | 1766 ++++++++++++++----------- tests/cross-runtime/run.mjs | 19 +- 5 files changed, 988 insertions(+), 815 deletions(-) diff --git a/site/content/blog/introducing-nub.mdx b/site/content/blog/introducing-nub.mdx index 3f0b6fcc4..1d8c6a89e 100644 --- a/site/content/blog/introducing-nub.mdx +++ b/site/content/blog/introducing-nub.mdx @@ -33,7 +33,7 @@ Bun and Deno proved there's enormous appetite for an all-in-one toolkit that rep ## Introducing Nub -Nub embraces it instead. It's a single Rust binary that transpiles your code and executes it on the stock `node` your project pins — so the runtime underneath *is* Node. On Node 26.7's own test suite, scored the way Deno's compatibility corpus scores it, it clears 98.5% of what real Node passes, versus 74.2% for Deno 2.9 and 70.8% for Bun 1.4. It combines: +Nub embraces it instead. It's a single Rust binary that transpiles your code and executes it on the stock `node` your project pins — so the runtime underneath *is* Node. On Node 26.7's own test suite, scored the way Deno's compatibility corpus scores it, it clears 98.5% of what real Node passes, versus 74.2% for Deno 2.9 and 70.1% for Bun 1.4. It combines: ```console $ nub index.ts # file runner — full TypeScript, on stock Node diff --git a/site/src/app/(home)/page.tsx b/site/src/app/(home)/page.tsx index 4ea856a93..57ec02de5 100644 --- a/site/src/app/(home)/page.tsx +++ b/site/src/app/(home)/page.tsx @@ -955,7 +955,7 @@ const COMPAT = [ { name: 'Node 26.7', rate: 100, tests: '5,046 / 5,046', us: false, dim: false }, { name: 'Nub', rate: 98.5, tests: '4,968 / 5,046', us: true, dim: false }, { name: 'Deno 2.9', rate: 74.2, tests: '3,742 / 5,046', us: false, dim: true }, - { name: 'Bun 1.4', rate: 70.8, tests: '3,573 / 5,046', us: false, dim: true }, + { name: 'Bun 1.4', rate: 70.1, tests: '3,535 / 5,046', us: false, dim: true }, ]; function Compatibility() { diff --git a/tests/cross-runtime/README.md b/tests/cross-runtime/README.md index 23b64da3e..a70dae6c7 100644 --- a/tests/cross-runtime/README.md +++ b/tests/cross-runtime/README.md @@ -23,7 +23,7 @@ This harness runs Node's own test suite — the whole `test/` tree of a Node rel The nub binary is a release build of `main` at `e78a6701dd` plus the `NODE_OPTIONS` coverage-exclude change committed beside this results file. This table and the results table below are generated from `results.json` by [`readme-table.mjs`](./readme-table.mjs). -macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 1 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`): 164 files flipped to pass and 20 flipped to fail — the latter had been exiting 0 before their `'exit'`-handler assertions ran. +macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 1 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`), one full bun pass over the same v26.7.0 checkout: 99 files flipped to pass and none flipped to fail. ## Reproduce it yourself @@ -80,12 +80,12 @@ Node-relative pass rate (raw in parentheses). The rows are generated from `resul | 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) | 70.81% (70.50) | 90.15% (89.62) | -| `bunUniverse` | 4,760 / 4,736 | **98.16%** (97.67) | 71.75% (71.49) | 72.74% (72.50) | 89.55% (89.12) | -| `fullCorpus` | 5,664 / 5,616 | **97.40%** (96.61) | 68.07% (67.67) | 66.38% (66.01) | 89.96% (89.23) | -| `fullCorpusNoEngine` | 4,946 / 4,904 | **97.37%** (96.58) | 71.66% (71.25) | 72.21% (71.82) | 90.03% (89.30) | -| `bunUniverseNoEngine` | 4,111 / 4,091 | **98.22%** (97.74) | 76.04% (75.80) | 79.93% (79.69) | 89.54% (89.13) | -| `engineSpecificOnly` | 718 / 712 | **97.61%** (96.80) | 43.40% (43.04) | 26.26% (26.04) | 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). diff --git a/tests/cross-runtime/results.json b/tests/cross-runtime/results.json index cfe88d261..5d50f96c4 100644 --- a/tests/cross-runtime/results.json +++ b/tests/cross-runtime/results.json @@ -1,10 +1,10 @@ { "meta": { - "generatedAt": "2026-08-31T01:14:12.905Z", + "generatedAt": "2026-08-31T02:25:04.670Z", "platform": "darwin", "corpus": "", - "corpusNodeVersion": "27.0.0", - "corpusCommit": "cebe4248aff54f6420fd24a8bb7884e5a452e955", + "corpusNodeVersion": "26.7.0", + "corpusCommit": "b4f23d3619c98bed09af93a21192f6080197a8c6", "binaries": { "bun": { "bin": "~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun", @@ -28,7 +28,7 @@ "version": "v25.9.0" } }, - "eligibleFiles": 5490, + "eligibleFiles": 5664, "ignoredOrSkipped": 448, "includeExcluded": true, "denominator": 5664, @@ -39,8 +39,8 @@ "mergeRetryFailures": true, "retried": { "bun": { - "retried": 1926, - "flippedToPass": 1 + "retried": 1974, + "flippedToPass": 4 }, "node": { "retried": 49, @@ -63,10 +63,10 @@ "perRuntime": [ { "runtime": "bun", - "pass": 3739, - "fail": 1925, + "pass": 3694, + "fail": 1970, "timeout": 123, - "pct": 66.01 + "pct": 65.22 }, { "runtime": "node", @@ -104,10 +104,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3573, - "pct": 70.81, - "rawPass": 3580, - "rawPct": 70.5 + "pass": 3535, + "pct": 70.06, + "rawPass": 3542, + "rawPct": 69.75 }, { "runtime": "node", @@ -145,10 +145,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3445, - "pct": 72.74, - "rawPass": 3451, - "rawPct": 72.5 + "pass": 3400, + "pct": 71.79, + "rawPass": 3406, + "rawPct": 71.55 }, { "runtime": "node", @@ -186,10 +186,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3728, - "pct": 66.38, - "rawPass": 3739, - "rawPct": 66.01 + "pass": 3683, + "pct": 65.58, + "rawPass": 3694, + "rawPct": 65.22 }, { "runtime": "node", @@ -227,10 +227,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3541, - "pct": 72.21, - "rawPass": 3552, - "rawPct": 71.82 + "pass": 3502, + "pct": 71.41, + "rawPass": 3513, + "rawPct": 71.03 }, { "runtime": "node", @@ -268,10 +268,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3270, - "pct": 79.93, - "rawPass": 3276, - "rawPct": 79.69 + "pass": 3231, + "pct": 78.98, + "rawPass": 3237, + "rawPct": 78.74 }, { "runtime": "node", @@ -309,10 +309,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 187, - "pct": 26.26, - "rawPass": 187, - "rawPct": 26.04 + "pass": 181, + "pct": 25.42, + "rawPass": 181, + "rawPct": 25.21 }, { "runtime": "node", @@ -350,10 +350,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 125, - "pct": 28.87, - "rawPass": 129, - "rawPct": 28.79 + "pass": 118, + "pct": 27.25, + "rawPass": 122, + "rawPct": 27.23 }, { "runtime": "node", @@ -474,10 +474,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 47, - "pct": 67.14, - "rawPass": 47, - "rawPct": 67.14 + "pass": 46, + "pct": 65.71, + "rawPass": 46, + "rawPct": 65.71 }, { "runtime": "node", @@ -515,10 +515,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 79, - "pct": 32.92, - "rawPass": 79, - "rawPct": 32.64 + "pass": 80, + "pct": 33.33, + "rawPass": 80, + "rawPct": 33.06 }, { "runtime": "node", @@ -720,10 +720,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 3376, - "pct": 73.11, - "rawPass": 3382, - "rawPct": 72.87 + "pass": 3332, + "pct": 72.15, + "rawPass": 3338, + "rawPct": 71.92 }, { "runtime": "node", @@ -925,10 +925,10 @@ "runtimes": [ { "runtime": "bun", - "pass": 69, - "pct": 58.47, - "rawPass": 69, - "rawPct": 57.98 + "pass": 68, + "pct": 57.63, + "rawPass": 68, + "rawPct": 57.14 }, { "runtime": "node", @@ -1457,6 +1457,7 @@ "client-proxy/test-http-set-global-proxy-from-env-fetch.mjs", "client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs", "client-proxy/test-https-proxy-fetch.mjs", + "client-proxy/test-https-proxy-request-auth-failure.mjs", "client-proxy/test-https-proxy-request-empty-response.mjs", "client-proxy/test-https-proxy-request-malformed-response.mjs", "client-proxy/test-https-proxy-request-proxy-failure-404.mjs", @@ -1605,7 +1606,6 @@ "es-module/test-require-module-errors.js", "es-module/test-require-module-feature-detect.js", "es-module/test-require-module-implicit.js", - "es-module/test-require-module-instantiated.mjs", "es-module/test-require-module-preload.js", "es-module/test-require-module-retry-import-errored.js", "es-module/test-require-module-retry-import-evaluating.js", @@ -1891,9 +1891,11 @@ "parallel/test-crypto-domain.js", "parallel/test-crypto-domains.js", "parallel/test-crypto-encap-decap.js", + "parallel/test-crypto-encoding-validation-error.js", "parallel/test-crypto-hash-stream-error.js", "parallel/test-crypto-job-error-parity.js", "parallel/test-crypto-key-objects-messageport.js", + "parallel/test-crypto-key-objects-to-crypto-key.js", "parallel/test-crypto-key-objects.js", "parallel/test-crypto-keyobject-hidden-slots.js", "parallel/test-crypto-sec-level.js", @@ -1996,6 +1998,7 @@ "parallel/test-diagnostics-channel-process.js", "parallel/test-diagnostics-channel-run-stores-scope-transform-error.js", "parallel/test-diagnostics-channel-run-stores-scope.js", + "parallel/test-diagnostics-channel-symbol-named.js", "parallel/test-diagnostics-channel-sync-unsubscribe.js", "parallel/test-diagnostics-channel-tracing-channel-args-types.js", "parallel/test-diagnostics-channel-tracing-channel-callback-early-exit.js", @@ -2142,7 +2145,6 @@ "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.js", @@ -2183,47 +2185,37 @@ "parallel/test-heapsnapshot-near-heap-limit-worker.js", "parallel/test-http-agent-domain-reused-gc.js", "parallel/test-http-agent-free-socket-data-guard.js", - "parallel/test-http-blank-header.js", - "parallel/test-http-client-headers-array.js", "parallel/test-http-client-highwatermark.js", "parallel/test-http-client-immediate-error.js", "parallel/test-http-client-leaky-with-double-response.js", "parallel/test-http-connect-default-host-header.js", - "parallel/test-http-content-length.js", "parallel/test-http-dump-req-when-res-ends.js", "parallel/test-http-header-overflow.js", - "parallel/test-http-keep-alive-max-requests.js", - "parallel/test-http-keep-alive-pipeline-max-requests.js", "parallel/test-http-localaddress.js", "parallel/test-http-max-headers-count-overflow.js", "parallel/test-http-max-http-headers.js", - "parallel/test-http-multiple-headers.js", - "parallel/test-http-outgoing-proto.js", + "parallel/test-http-outgoing-end-multiple.js", + "parallel/test-http-outgoing-writableFinished.js", "parallel/test-http-parser-bad-ref.js", "parallel/test-http-parser-lazy-loaded.js", "parallel/test-http-parser-timeout-reset.js", + "parallel/test-http-perf_hooks.js", "parallel/test-http-raw-headers.js", - "parallel/test-http-remove-header-stays-removed.js", "parallel/test-http-req-close-robust-from-tampering.js", + "parallel/test-http-request-signal.js", "parallel/test-http-response-cork.js", "parallel/test-http-same-map.js", "parallel/test-http-server-close-idle-connections-pre-request.js", "parallel/test-http-server-connections-checking-leak.js", - "parallel/test-http-server-keep-alive-defaults.js", - "parallel/test-http-server-keep-alive-max-requests-null.js", "parallel/test-http-server-keepalive-req-gc.js", "parallel/test-http-server-multiple-client-error.js", "parallel/test-http-server-unconsume.js", - "parallel/test-http-upgrade-agent.js", - "parallel/test-http-upgrade-client.js", - "parallel/test-http-upgrade-server-with-body-and-extras.mjs", "parallel/test-http2-allow-http1-upgrade-ws.js", "parallel/test-http2-binding.js", "parallel/test-http2-client-destroy.js", "parallel/test-http2-client-http1-server.js", "parallel/test-http2-client-onconnect-errors.js", "parallel/test-http2-client-socket-destroy.js", - "parallel/test-http2-compat-serverrequest-trailers.js", "parallel/test-http2-connect-options.js", "parallel/test-http2-create-client-secure-session.js", "parallel/test-http2-debug.js", @@ -2253,6 +2245,7 @@ "parallel/test-http2-util-nghttp2error.js", "parallel/test-http2-util-update-options-buffer.js", "parallel/test-https-agent-checkserveridentity-reuse.js", + "parallel/test-https-agent-getname.js", "parallel/test-https-agent-keylog.js", "parallel/test-https-agent-pfx-object-array-reuse.js", "parallel/test-https-localaddress.js", @@ -2350,6 +2343,7 @@ "parallel/test-internal-util-normalizeencoding.js", "parallel/test-internal-util-objects.js", "parallel/test-internal-util-weakreference.js", + "parallel/test-internal-validators-validateport.js", "parallel/test-internal-webidl-buffer-source.js", "parallel/test-internal-webidl-converttoint.js", "parallel/test-internal-webidl.js", @@ -2361,6 +2355,7 @@ "parallel/test-memory-usage.js", "parallel/test-messageport-hasref.js", "parallel/test-messaging-marktransfermode.js", + "parallel/test-mime-api.js", "parallel/test-module-circular-dependency-warning.js", "parallel/test-module-loading-deprecated.js", "parallel/test-module-loading-globalpaths.js", @@ -2376,6 +2371,7 @@ "parallel/test-net-connect-keepalive.js", "parallel/test-net-connect-memleak.js", "parallel/test-net-connect-options-fd.js", + "parallel/test-net-connect-options-invalid.js", "parallel/test-net-end-close.js", "parallel/test-net-keepalive-interval-count.js", "parallel/test-net-listen-twice.js", @@ -2497,7 +2493,7 @@ "parallel/test-process-execve-permission-fail.js", "parallel/test-process-execve-validation.js", "parallel/test-process-exit-code-validation.js", - "parallel/test-process-features.js", + "parallel/test-process-finalization.mjs", "parallel/test-process-get-builtin.mjs", "parallel/test-process-getactivehandles.js", "parallel/test-process-getactiverequests.js", @@ -2529,19 +2525,28 @@ "parallel/test-punycode.js", "parallel/test-quic-alpn-mismatch.mjs", "parallel/test-quic-certificate-compression.mjs", + "parallel/test-quic-diagnostics-channel-path.mjs", + "parallel/test-quic-h3-settings.mjs", + "parallel/test-quic-internal-endpoint-stats-state.mjs", + "parallel/test-quic-internal-setcallbacks.mjs", "parallel/test-quic-list-endpoints.mjs", "parallel/test-quic-multipacket-clienthello.mjs", "parallel/test-quic-reject-unauthorized.mjs", - "parallel/test-quic-session-close-error-code.mjs", "parallel/test-quic-session-emit-ordering.mjs", "parallel/test-quic-session-unobserved-error-close.mjs", + "parallel/test-quic-sni-mismatch.mjs", + "parallel/test-quic-stream-bidi-writer.mjs", "parallel/test-quic-stream-body-pooled-buffer.mjs", - "parallel/test-quic-stream-destroy-emits-reset.mjs", - "parallel/test-quic-stream-destroy-options-code.mjs", + "parallel/test-quic-stream-destroy-emits-stop-sending.mjs", "parallel/test-quic-stream-read-after-blocked.mjs", "parallel/test-quic-stream-stop-sending-callback.mjs", - "parallel/test-quic-stream-writer-fail-error-code.mjs", + "parallel/test-quic-stream-uni-basic.mjs", + "parallel/test-quic-stream-uni-server-initiated.mjs", + "parallel/test-quic-stream-writer-api.mjs", + "parallel/test-quic-stream-writer-dispose.mjs", "parallel/test-quic-version-negotiation-oversized-cid.mjs", + "parallel/test-quic-writer-backpressure.mjs", + "parallel/test-quic-writer-write-rejects.mjs", "parallel/test-quotaexceedederror.js", "parallel/test-readline-async-iterators.js", "parallel/test-repl-custom-eval-previews.js", @@ -2679,6 +2684,8 @@ "parallel/test-source-map-cjs-require-cache.js", "parallel/test-source-map-enable.js", "parallel/test-sqlite-backup.mjs", + "parallel/test-sqlite-config.js", + "parallel/test-sqlite-session.js", "parallel/test-sqlite-statement-sync.js", "parallel/test-sqlite-template-tag.js", "parallel/test-sqlite-timeout.js", @@ -2691,8 +2698,33 @@ "parallel/test-stdout-close-unref.js", "parallel/test-stream-base-prototype-accessors-enumerability.js", "parallel/test-stream-destroy.js", + "parallel/test-stream-iter-broadcast-backpressure.js", + "parallel/test-stream-iter-broadcast-basic.js", + "parallel/test-stream-iter-broadcast-coverage.js", + "parallel/test-stream-iter-broadcast-from.js", + "parallel/test-stream-iter-consumers-bytes.js", + "parallel/test-stream-iter-consumers-merge.js", + "parallel/test-stream-iter-duplex.js", + "parallel/test-stream-iter-from-async.js", + "parallel/test-stream-iter-from-sync.js", + "parallel/test-stream-iter-pipeto-signal.js", + "parallel/test-stream-iter-pipeto-writev.js", + "parallel/test-stream-iter-pipeto.js", + "parallel/test-stream-iter-pull-async.js", + "parallel/test-stream-iter-push-backpressure.js", + "parallel/test-stream-iter-push-basic.js", + "parallel/test-stream-iter-push-writer.js", + "parallel/test-stream-iter-share-async.js", + "parallel/test-stream-iter-share-from.js", + "parallel/test-stream-iter-sharedarraybuffer.js", + "parallel/test-stream-iter-transform-output.js", + "parallel/test-stream-iter-validation.js", + "parallel/test-stream-iter-writable-from.js", + "parallel/test-stream-iter-writable-interop.js", "parallel/test-stream-pipe-multiple-destinations-error.js", + "parallel/test-stream-pipeline.js", "parallel/test-stream-readable-async-iter-half-open-duplex.js", + "parallel/test-stream-readable-setEncoding-existing-buffers.js", "parallel/test-stream-wrap-drain.js", "parallel/test-stream-wrap-encoding.js", "parallel/test-stream-wrap.js", @@ -2725,6 +2757,7 @@ "parallel/test-tls-async-cb-after-socket-end.js", "parallel/test-tls-cert-ext-encoding.js", "parallel/test-tls-certificate-compression.js", + "parallel/test-tls-check-server-identity.js", "parallel/test-tls-cipher-list.js", "parallel/test-tls-client-auth.js", "parallel/test-tls-client-default-ciphers.js", @@ -2746,6 +2779,7 @@ "parallel/test-tls-ocsp-callback.js", "parallel/test-tls-off-thread-cert-loading-system.js", "parallel/test-tls-off-thread-cert-loading.js", + "parallel/test-tls-over-http-tunnel.js", "parallel/test-tls-psk-errors.js", "parallel/test-tls-reinitialize-listeners.js", "parallel/test-tls-server-setkeycert.js", @@ -2770,6 +2804,7 @@ "parallel/test-url-urltooptions.js", "parallel/test-urlpattern-invalidthis.js", "parallel/test-urlpattern-types.js", + "parallel/test-urlpattern.js", "parallel/test-util-callbackify.js", "parallel/test-util-deprecate.js", "parallel/test-util-emit-experimental-warning.js", @@ -2921,12 +2956,17 @@ "parallel/test-webapi-sharedarraybuffer-rejection.js", "parallel/test-webcrypto-crypto-job-mode.js", "parallel/test-webcrypto-cryptokey-brand-check.js", + "parallel/test-webcrypto-derivekey-ecdh.js", "parallel/test-webcrypto-digest-turboshake-rfc.js", "parallel/test-webcrypto-digest-turboshake.js", + "parallel/test-webcrypto-encap-decap-ml-kem.js", + "parallel/test-webcrypto-export-import.js", + "parallel/test-webcrypto-get-public-key.mjs", "parallel/test-webcrypto-keygen.js", "parallel/test-webcrypto-promise-prototype-pollution.mjs", "parallel/test-webcrypto-random.js", "parallel/test-webcrypto-raw-format-aliases.js", + "parallel/test-webcrypto-sign-verify-eddsa.js", "parallel/test-webcrypto-sign-verify-rsa.js", "parallel/test-webcrypto-supports.mjs", "parallel/test-webcrypto-util.js", @@ -3019,7 +3059,11 @@ "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-zstd-dictionary.js", + "parallel/test-zlib-zstd-pledged-src-size.js", "parallel/test-zlib.js", "pseudo-tty/test-assert-colors.js", "pseudo-tty/test-async-wrap-getasyncid-tty.js", @@ -3093,6 +3137,7 @@ "sequential/test-cpu-prof-dir-worker.js", "sequential/test-cpu-prof-worker-argv.js", "sequential/test-crypto-timing-safe-equal-fast.js", + "sequential/test-debug-prompt.js", "sequential/test-debugger-custom-port.js", "sequential/test-debugger-debug-brk.js", "sequential/test-debugger-invalid-args.js", @@ -8110,7 +8155,7 @@ "pass": false, "timeout": false, "exit": 1, - "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-32060.js:26:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)", + "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": { @@ -8141,7 +8186,7 @@ "pass": false, "timeout": false, "exit": 1, - "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-agent.js:29:10)\n at emit (node:events:127:23)\n at emitListeningNextTick (node:_http_server:140:14)\n\nBun v1.4.0 (macOS arm64)", + "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": { @@ -8172,7 +8217,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "fined,\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.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": { @@ -10905,7 +10950,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " },\n+ method: 'GET',\n+ url: 'http://localhost:50889/test'\n- method: 'CONNECT',\n- url: 'localhost:50889'\n }\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-http-proxy-fetch.mjs:42: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": { @@ -10938,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": { @@ -10971,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": { @@ -11004,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": { @@ -11645,7 +11690,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " url: 'http://localhost:50968/test'\n- method: 'CONNECT',\n- url: 'localhost:50968'\n }\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-http-set-global-proxy-from-env-fetch-default.mjs:35: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": { @@ -11705,7 +11750,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ction: 'close',\n- host: 'localhost:50983'\n- },\n- method: 'CONNECT',\n- url: 'localhost:50983'\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": { @@ -11763,7 +11808,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ion: 'close',\n- host: 'localhost:50992'\n- },\n- method: 'CONNECT',\n- url: 'localhost:50992'\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:35: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": { @@ -11796,7 +11841,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " connection: 'close',\n- host: 'localhost:50991'\n- },\n- method: 'CONNECT',\n- url: 'localhost:50991'\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:34: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": { @@ -12045,7 +12090,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "+ host: 'localhost:51021'\n+ },\n+ method: 'GET',\n+ url: 'http://localhost:51021/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": { @@ -12105,7 +12150,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "- connection: 'close',\n host: 'localhost:51028'\n },\n method: 'CONNECT',\n url: 'localhost:51028'\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": { @@ -12133,9 +12178,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -12804,7 +12851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " connection: 'keep-alive',\n- host: 'localhost:51123'\n- },\n- method: 'GET',\n- url: 'http://localhost:51123/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": { @@ -12837,7 +12884,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "'proxy-connection': 'keep-alive',\n- host: 'localhost:51127'\n- },\n- method: 'CONNECT',\n- url: 'localhost:51127'\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": { @@ -12897,7 +12944,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/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.81ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [48.00ms]", + "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": { @@ -12930,7 +12977,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [23.07ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [85.00ms]", + "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": { @@ -12961,7 +13008,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [35.00ms]", + "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": { @@ -13334,7 +13381,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [11.25ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [56.00ms]", + "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": { @@ -13363,7 +13410,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sTicksAndRejections (native:7:39)\n(fail) ESM: Errors for unexpected exports > should NOT include note [11.10ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [10.59ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [10.45ms]\n(pass) ESM: Errors for unexpected exports > should NOT include note [9.86ms]\n\n 5 pass\n 5 fail\nRan 10 tests across 1 file. [131.00ms]", + "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": { @@ -13452,7 +13499,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tart an empty Bun project from a built-in template\n create next-app 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": { @@ -13988,7 +14035,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [10.52ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [49.00ms]", + "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": { @@ -14019,7 +14066,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [9.72ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [45.00ms]", + "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": { @@ -14110,7 +14157,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [10.70ms]\n\n 2 pass\n 4 fail\nRan 6 tests across 1 file. [99.00ms]", + "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": { @@ -14141,7 +14188,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "e/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 [22.91ms]\n(pass) extensionless Wasm within no package scope > should run on import [0.19ms]\n\n 6 pass\n 4 fail\nRan 10 tests across 1 file. [115.00ms]", + "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": { @@ -14439,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": { @@ -14503,7 +14550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ing --import > should import --require before --import [9.33ms]\n(pass) import modules using --import > should import a module with top level await [21.62ms]\n(pass) import modules using --import > should import files sequentially [21.97ms]\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. [171.00ms]", + "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": { @@ -14534,7 +14581,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [13.99ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [38.00ms]", + "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": { @@ -14565,7 +14612,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [99.00ms]", + "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": { @@ -14755,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": { @@ -14908,7 +14955,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.28ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [31.00ms]", + "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": { @@ -14970,7 +15017,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.56ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", + "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": { @@ -15032,7 +15079,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [5.03ms]\n\n 3 pass\n 1 fail\nRan 4 tests across 1 file. [40.00ms]", + "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": { @@ -15119,7 +15166,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [5.27ms]", + "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": { @@ -15179,7 +15226,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.14ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [63.00ms]", + "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": { @@ -15237,7 +15284,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.75ms]\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. [75.00ms]", + "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": { @@ -15295,7 +15342,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [5.11ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [45.00ms]", + "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": { @@ -15446,7 +15493,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.56ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", + "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": { @@ -15477,7 +15524,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [5.45ms]", + "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": { @@ -15570,7 +15617,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.71ms]", + "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": { @@ -15630,7 +15677,7 @@ "pass": false, "timeout": false, "exit": 1, - "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) [8.47ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [52.00ms]", + "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": { @@ -15690,7 +15737,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [13.44ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [40.00ms]", + "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": { @@ -15810,7 +15857,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [8.12ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [92.00ms]", + "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": { @@ -15930,7 +15977,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 > [11.94ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [35.00ms]", + "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": { @@ -15988,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": { @@ -16054,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": { @@ -16087,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": { @@ -16153,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": { @@ -16186,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": { @@ -16337,7 +16384,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [19.18ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [87.00ms]", + "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": { @@ -16538,7 +16585,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [8.19ms]\n\n 1 pass\n 3 fail\nRan 4 tests across 1 file. [63.00ms]", + "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": { @@ -16835,7 +16882,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s required by esm [11.55ms]\n(pass) esm source-map > should not extract source map urlinside string from esm imported by esm [12.62ms]\n(pass) esm source-map > should not extract source map urlinside string from cjs imported by esm [12.19ms]\n(pass) esm source-map > should not extract source map urlinside string from cjs required by esm [11.12ms]\n\n 4 pass\n 4 fail\nRan 8 tests across 1 file. [129.00ms]", + "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": { @@ -16951,7 +16998,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [14.26ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [41.00ms]", + "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": { @@ -17007,7 +17054,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.99ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [476.00ms]", + "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": { @@ -17096,7 +17143,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [5.25ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [41.00ms]", + "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": { @@ -17208,7 +17255,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at assert.rejects (node:assert:432:17)\nAssertionError: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: /exports is not defined in ES module scope$/,\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)", + "tail": "rt:383:14)\n at assert.rejects (node:assert:432:17)\nAssertionError: Missing expected rejection.\n generatedMessage: false,\n actual: undefined,\n expected: /use the '\\.cjs' file extension/,\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": { @@ -17239,7 +17286,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/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.73ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [53.00ms]", + "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": { @@ -17359,7 +17406,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at /test/fixtures/es-modules/test-wasm-escape-import-names.mjs:5:25\n\nBun v1.4.0 (macOS arm64)\n\n[process 77360]: --- stdout ---\n\n[process 77360]: 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": { @@ -17388,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 77362]: --- stdout ---\n\n[process 77362]: 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": { @@ -17419,7 +17466,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at /test/fixtures/es-modules/test-wasm-js-string-builtins.mjs:5:25\n\nBun v1.4.0 (macOS arm64)\n\n[process 77363]: --- stdout ---\n\n[process 77363]: 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": { @@ -17450,7 +17497,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rt named 'add' not found in module '/test/fixtures/es-modules/simple.wasm'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 77365]: --- stdout ---\n\n[process 77365]: 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": { @@ -17479,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 77366]: --- stdout ---\n\n[process 77366]: 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": { @@ -17510,7 +17557,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at /test/fixtures/es-modules/export-name-code-injection.wasm:47:56\n\nBun v1.4.0 (macOS arm64)\n\n[process 77376]: --- stdout ---\n\n[process 77376]: 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": { @@ -17539,7 +17586,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "corpus>/test/fixtures/es-modules/test-wasm-non-identifier-exports.mjs:5:1\n\nBun v1.4.0 (macOS arm64)\n\n[process 77379]: --- stdout ---\n\n[process 77379]: 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": { @@ -17568,7 +17615,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77378]: --- stderr ---\n\n[process 77378]: --- stdout ---\n\n[process 77378]: 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": { @@ -17599,7 +17646,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77382]: --- stderr ---\n\n[process 77382]: --- stdout ---\n\n[process 77382]: 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": { @@ -17630,7 +17677,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77383]: --- stderr ---\n\n[process 77383]: --- stdout ---\n\n[process 77383]: 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": { @@ -17661,7 +17708,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77391]: --- stderr ---\n\n[process 77391]: --- stdout ---\n\n[process 77391]: 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": { @@ -17692,7 +17739,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77393]: --- stderr ---\n\n[process 77393]: --- stdout ---\n\n[process 77393]: 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": { @@ -17723,7 +17770,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nd \"mod\"\n at /test/fixtures/es-modules/wasm-source-phase.js:1:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 77396]: --- stdout ---\n\n[process 77396]: 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": { @@ -17752,7 +17799,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/fixtures/es-modules/test-wasm-source-phase-identity.mjs:4:55\n\nBun v1.4.0 (macOS arm64)\n\n[process 77397]: --- stdout ---\n\n[process 77397]: 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": { @@ -17781,7 +17828,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "es/es-modules/test-wasm-source-phase-no-execute-dynamic.mjs:6:37\n\nBun v1.4.0 (macOS arm64)\n\n[process 77398]: --- stdout ---\n\n[process 77398]: 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": { @@ -17812,7 +17859,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pus>/test/fixtures/es-modules/test-wasm-source-phase-no-execute.mjs:5:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 77406]: --- stdout ---\n\n[process 77406]: 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": { @@ -17841,7 +17888,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/es-modules/test-wasm-source-phase-not-defined-dynamic.mjs:12:3\n\nBun v1.4.0 (macOS arm64)\n\n[process 77411]: --- stdout ---\n\n[process 77411]: 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": { @@ -17903,7 +17950,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "und \"mod\"\n at /test/fixtures/es-modules/wasm-source-phase.js:1:15\n\nBun v1.4.0 (macOS arm64)\n\n[process 77412]: --- stdout ---\n\n[process 77412]: 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": { @@ -17932,7 +17979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s (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 77413]: --- stdout ---\n\n[process 77413]: 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": { @@ -17963,7 +18010,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "node:vm:229:52)\n\nBun v1.4.0 (macOS arm64)\n\n[process 77415]: --- stdout ---\n\n[process 77415]: 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": { @@ -17994,7 +18041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(node:vm:229:52)\n\nBun v1.4.0 (macOS arm64)\n\n[process 77422]: --- stdout ---\n\n[process 77422]: 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": { @@ -18052,7 +18099,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77425]: --- stderr ---\n\n[process 77425]: --- stdout ---\nscript STARTED\nv26.3.0\n\n[process 77425]: 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": { @@ -18168,7 +18215,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/import-require-cycle/preload.mjs:3:5\n\nBun v1.4.0 (macOS arm64)\n\n[process 77437]: --- stdout ---\n\n[process 77437]: 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)", + "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": { @@ -18197,7 +18244,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ")\n\nBun v1.4.0 (macOS arm64)\n\n[process 77438]: --- stdout ---\n\n[process 77438]: 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)", + "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": { @@ -18286,7 +18333,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [11.64ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [178.00ms]", + "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": { @@ -18346,7 +18393,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ess 77446]: --- stdout ---\n\n[process 77446]: 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": { @@ -18377,7 +18424,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " | await import('../fixtures/es-modules/tla/resolved.mjs');\n9 | 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-cached-tla.js:9:10", + "tail": "');\n6 | \n7 | (async () => {\n8 | await import('../fixtures/es-modules/tla/resolved.mjs');\n9 | 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-cached-tla.js:9:10", "retried": true }, "deno": { @@ -18493,7 +18540,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77459]: --- stderr ---\n\n[process 77459]: --- stdout ---\n\n[process 77459]: 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": { @@ -18524,7 +18571,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 77461]: --- stderr ---\n\n[process 77461]: --- stdout ---\nrequire a.mjs in b.cjs undefined\nimport b.cjs from a.mjs {}\n\n[process 77461]: 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": { @@ -18555,7 +18602,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77463]: --- stderr ---\n\n[process 77463]: --- stdout ---\n\n[process 77463]: 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": { @@ -18936,7 +18983,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77491]: --- stderr ---\n\n[process 77491]: --- stdout ---\ntrue\n\n[process 77491]: 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": { @@ -18995,11 +19042,16 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "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)", - "retried": true + "exit": 0, + "retried": true, + "firstAttempt": { + "pass": false, + "timeout": false, + "exit": 1, + "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": { "pass": true, @@ -19027,7 +19079,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s-modules/exports-cases2.js'.\n\nBun v1.4.0 (macOS arm64)\n\n[process 77499]: --- stdout ---\n\n[process 77499]: 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": { @@ -19209,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": { @@ -19242,7 +19294,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77495]: --- stderr ---\nI am executed\n\n[process 77495]: --- stdout ---\n\n[process 77495]: 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": { @@ -19306,7 +19358,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ",\n code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:952:12)\n at /test/es-module/test-require-module-tla-nested.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-nested.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": ",\n code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:983:12)\n at /test/es-module/test-require-module-tla-nested.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-nested.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19337,7 +19389,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77501]: --- stderr ---\nI am executed\n\n[process 77501]: --- stdout ---\n\n[process 77501]: 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": { @@ -19370,7 +19422,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:952:12)\n at /test/es-module/test-require-module-tla-rejected.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-rejected.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:983:12)\n at /test/es-module/test-require-module-tla-rejected.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-rejected.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19519,7 +19571,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:952:12)\n at /test/es-module/test-require-module-tla-unresolved.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-unresolved.js:8:8\n\nBun v1.4.0 (macOS arm64)", + "tail": " code: \"ERR_ASSERTION\"\n\n at expectRequiredTLAError (/test/common/index.js:983:12)\n at /test/es-module/test-require-module-tla-unresolved.js:11:10\n at expectedException (node:assert:307:30)\n at expectsError (node:assert:393:20)\n at throws (node:assert:428:15)\n at /test/es-module/test-require-module-tla-unresolved.js:8:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -19701,7 +19753,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77543]: --- stderr ---\n\n[process 77543]: --- stdout ---\nworld\n\n[process 77543]: 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": { @@ -19960,7 +20012,7 @@ "pass": false, "timeout": false, "exit": 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.387/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": { @@ -21674,7 +21726,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s-module-loaders/hooks-input.mjs\"\n\n[process 77683]: --- stdout ---\n\n[process 77683]: 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)", + "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": { @@ -21738,7 +21790,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s/loader-globalpreload-and-initialize.mjs\"\n\n[process 77687]: --- stdout ---\n\n[process 77687]: 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)", + "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": { @@ -21798,7 +21850,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "err ---\n\n[process 77719]: --- stdout ---\nresult 1 undefined\nresult 2 undefined\n\n[process 77719]: 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": { @@ -21829,7 +21881,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rs/hooks-initialize.mjs\"\n\n[process 77723]: --- stdout ---\n\n[process 77723]: 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": { @@ -21860,7 +21912,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77724]: --- stderr ---\n\n[process 77724]: --- stdout ---\n\n[process 77724]: 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": { @@ -21891,7 +21943,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "oader-initialize-exit.mjs\"\n\n[process 77727]: --- stdout ---\n\n[process 77727]: 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": { @@ -21922,7 +21974,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "loader-initialize-rejecting.mjs\"\n\n[process 77729]: --- stdout ---\n\n[process 77729]: 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": { @@ -21953,7 +22005,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rs/loader-initialize-throw-null.mjs\"\n\n[process 77731]: --- stdout ---\n\n[process 77731]: 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": { @@ -21984,7 +22036,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "corpus>/test/fixtures/es-module-loaders/loader-mixed-opt-in.mjs\"\n\n[process 77733]: --- stdout ---\n\n[process 77733]: 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": { @@ -22015,7 +22067,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 77762]: 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)", + "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": { @@ -22046,7 +22098,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "stdout ---\n\n[process 77763]: 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)", + "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": { @@ -22077,7 +22129,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tdout ---\n\n[process 77766]: 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)", + "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": { @@ -22108,7 +22160,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 77795]: --- stdout ---\n\n[process 77795]: 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)", + "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": { @@ -22139,7 +22191,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": --- stdout ---\n\n[process 77797]: 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)", + "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": { @@ -22168,7 +22220,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": --- stdout ---\n\n[process 77799]: 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)", + "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": { @@ -22197,7 +22249,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "out ---\n\n[process 77802]: 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)", + "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": { @@ -22228,7 +22280,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ut ---\n\n[process 77804]: 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)", + "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": { @@ -22259,7 +22311,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "806]: --- stdout ---\n\n[process 77806]: 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)", + "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": { @@ -22290,7 +22342,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tures/es-module-loaders/loader-edge-cases.mjs\"\n\n[process 77835]: --- stdout ---\n\n[process 77835]: 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)", + "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": { @@ -22321,7 +22373,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rs/loader-exit-on-load.mjs\"\n\n[process 77837]: --- stdout ---\n\n[process 77837]: 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": { @@ -22352,7 +22404,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-- stdout ---\n\n[process 77839]: 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": { @@ -22383,7 +22435,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "module-loaders/loader-exit-top-level.mjs\"\n\n[process 77841]: --- stdout ---\n\n[process 77841]: 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)", + "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": { @@ -22445,7 +22497,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77844]: --- stderr ---\n\n[process 77844]: --- stdout ---\n\n[process 77844]: 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": { @@ -22507,7 +22559,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 77848]: --- stderr ---\n\n[process 77848]: --- stdout ---\n\n[process 77848]: 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": { @@ -22600,7 +22652,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s/loader-resolve-passthru.mjs\"\n\n[process 77854]: --- stdout ---\n\n[process 77854]: 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)", + "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": { @@ -22662,7 +22714,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " arm64)\n\n[process 77859]: --- stdout ---\n\n[process 77859]: 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": { @@ -22693,7 +22745,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pus>/test/fixtures/es-module-loaders/loader-throw-bigint.mjs\"\n\n[process 77861]: --- stdout ---\n\n[process 77861]: 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)", + "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": { @@ -22724,7 +22776,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "test/fixtures/es-module-loaders/loader-throw-boolean.mjs\"\n\n[process 77862]: --- stdout ---\n\n[process 77862]: 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)", + "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": { @@ -22755,7 +22807,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "res/es-module-loaders/loader-throw-empty-object.mjs\"\n\n[process 77865]: --- stdout ---\n\n[process 77865]: 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)", + "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": { @@ -22786,7 +22838,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s/es-module-loaders/loader-throw-error.mjs\"\n\n[process 77867]: --- stdout ---\n\n[process 77867]: 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)", + "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": { @@ -22817,7 +22869,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "odule-loaders/loader-throw-function.mjs\"\n\n[process 77868]: --- stdout ---\n\n[process 77868]: 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)", + "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": { @@ -22848,7 +22900,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rpus>/test/fixtures/es-module-loaders/loader-throw-null.mjs\"\n\n[process 77871]: --- stdout ---\n\n[process 77871]: 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)", + "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": { @@ -22879,7 +22931,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pus>/test/fixtures/es-module-loaders/loader-throw-number.mjs\"\n\n[process 77873]: --- stdout ---\n\n[process 77873]: 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)", + "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": { @@ -22910,7 +22962,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 77874]: --- stdout ---\n\n[process 77874]: 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)", + "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": { @@ -22941,7 +22993,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tures/es-module-loaders/loader-throw-string.mjs\"\n\n[process 77877]: --- stdout ---\n\n[process 77877]: 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)", + "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": { @@ -23001,7 +23053,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ures/es-module-loaders/loader-throw-undefined.mjs\"\n\n[process 77880]: --- stdout ---\n\n[process 77880]: 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)", + "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": { @@ -23032,7 +23084,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " --- stdout ---\n\n[process 77883]: 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)", + "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": { @@ -23063,7 +23115,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t ---\n\n[process 77884]: 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)", + "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": { @@ -23092,7 +23144,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": --- stdout ---\n\n[process 77885]: 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)", + "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": { @@ -23123,7 +23175,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 77890]: --- stdout ---\n\n[process 77890]: 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)", + "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": { @@ -23305,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": { @@ -23367,7 +23419,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "7897]: 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": { @@ -24079,7 +24131,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/register-typescript-hooks.js:4:1)\n\nBun v1.4.0 (macOS arm64)\n\n[process 77974]: --- stdout ---\n\n[process 77974]: 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)", + "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": { @@ -25062,7 +25114,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.54ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [9.03s]", + "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": { @@ -25091,7 +25143,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [33.00ms]", + "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": { @@ -25122,7 +25174,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "active listener [12.26ms]\n(pass) Setting a long timeout should not keep the process open [0.06ms]\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.03ms]\n\n 15 pass\n 4 fail\nRan 19 tests across 1 file. [88.00ms]", + "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": { @@ -25153,7 +25205,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [7.47ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [42.00ms]", + "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": { @@ -25184,7 +25236,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "the same signal more than once [0.03ms]\n(pass) AbortSignal.any() > handles deeply aborted signals [0.55ms]\n(pass) AbortSignal.any() > executes abort handlers in correct order [0.07ms]\n(pass) AbortSignal.any() > must accept WebIDL sequence [0.12ms]\n(pass) AbortSignal.any() > throws TypeError if any value does not implement AbortSignal [0.16ms]\n\n 12 pass\n 1 fail\nRan 13 tests across 1 file. [37.00ms]", + "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": { @@ -25217,7 +25269,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.09ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [28.00ms]", + "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": { @@ -25248,7 +25300,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [41.21ms]\n\n 1 pass\n 5 fail\nRan 6 tests across 1 file. [141.00ms]", + "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": { @@ -25281,7 +25333,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [49.00ms]", + "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": { @@ -25530,7 +25582,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "]\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at assertNotDeepOrStrict (/test/parallel/test-assert-deep.js:214:10)\n at /test/parallel/test-assert-deep.js:739: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 [0.71ms]", + "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": { @@ -25617,7 +25669,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [3.44ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [31.00ms]", + "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": { @@ -25702,7 +25754,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ctEqual > throws an error > throws when comparing an Int16Array with a Uint16Array [0.04ms]\n(pass) Object Comparison Tests > partialDeepStrictEqual > throws an error > throws when comparing two dataviews with different buffers [0.04ms]\n(pass) Object Comparison Tests > partialDeepStrictEqual > throws an error > throws because expected Uint8Array(SharedArrayBuffer) is not a subset of actual [0.03ms]", + "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": { @@ -25758,7 +25810,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "d: /foo/,\n operator: \"doesNotMatch\",\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:1743: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) Faulty message functions [0.15ms]", + "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": { @@ -27670,7 +27722,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17:5)\n at (/test/parallel/test-blob.js:9:9)\n\nBun v1.4.0 (macOS arm64)", + "tail": "19 | 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-blob.js:9:9)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -27763,7 +27815,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ntentional, remove them from `expected.atRunTime`.\n\n--- These could be removed from expected.atRunTime ---\n[\n 'NativeModule internal/process/pre_execution'\n]\n\n\n10 !== 0\n\n generatedMessage: false,\n actual: 10,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-bootstrap-modules.js:264:8\n\nBun v1.4.0 (macOS arm64)", + "tail": "ntentional, remove them from `expected.atRunTime`.\n\n--- These could be removed from expected.atRunTime ---\n[\n 'NativeModule internal/process/pre_execution'\n]\n\n\n10 !== 0\n\n generatedMessage: false,\n actual: 10,\n expected: 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-bootstrap-modules.js:268:8\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -28269,7 +28321,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 78349]: --- stderr ---\n\n[process 78349]: --- stdout ---\n\n[process 78349]: 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": { @@ -29925,7 +29977,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [50.00ms]", + "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": { @@ -32876,7 +32928,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [54.00ms]", + "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": { @@ -32963,7 +33015,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "est/common/index.js:473:12\n\nerror: Command failed: \"${ESCAPED_0}\" --print --eval=-0\n1 | --eval=-0\n ^\nerror: Invalid assignment target\n at /[eval]:1:1\n\n1 | --eval=-0\n ^\nerror: Invalid assignment target\n at /[eval]:1:3\n\nBun v1.4.0 (macOS arm64)\n\n code: 1,\n killed: false,\n signal: null,\n cmd: \"\\\"${ESCAPED_0}\\\" --print --eval=-0\",\n\n at node:child_process:1076:22", + "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": { @@ -33133,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": { @@ -33201,7 +33253,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [44.00ms]", + "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": { @@ -33360,7 +33412,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "r: \"\",\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 [8.87ms]", + "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": { @@ -35989,7 +36041,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "8ccd90f17c2703...success\\n' +\n '[compile cache] Creating temporary file for cache of /test/fixtures/compile-cache-wrapper.js (CommonJS)... -> /test/.tmp.937/env_dir/v1.4.0-aarch64-34cbb9a40-501/.4b915d8468ce254-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}", + "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": { @@ -36080,7 +36132,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "st/fixtures/compile-cache-wrapper-options.js /test/.tmp.940/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", + "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": { @@ -36113,7 +36165,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "common/child_process.js:122:32)\n at /test/parallel/test-compile-cache-api-permission.js:26:3\n at stdout (/test/parallel/test-compile-cache-api-permission.js:45:16)\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-compile-cache-api-permission.js:26:3", + "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": { @@ -36645,7 +36697,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "peGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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. [47.00ms]", + "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": { @@ -36680,7 +36732,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [20.25ms]", + "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": { @@ -38231,7 +38283,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "116 | 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:116: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": { @@ -38491,9 +38543,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -38662,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": { @@ -38893,9 +38947,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -41175,7 +41231,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:16: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": { @@ -41345,7 +41401,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [39.00ms]", + "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": { @@ -41732,7 +41788,7 @@ "pass": false, "timeout": false, "exit": 1, - "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)", + "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": { @@ -41856,7 +41912,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 80266]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80266]: --- stdout ---\n\n[process 80266]: 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": { @@ -42098,7 +42154,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tderr ---\nerror: Script not found \"inspect\"\n\n[process 80298]: --- stdout ---\n\n[process 80298]: 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-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": { @@ -42131,7 +42187,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " stderr ---\nerror: Script not found \"inspect\"\n\n[process 80300]: --- stdout ---\n\n[process 80300]: 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.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": { @@ -42164,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": { @@ -42197,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": { @@ -42230,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": { @@ -42263,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": { @@ -42296,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": { @@ -42329,7 +42385,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ror: - 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-multi-statement.js:5:3 --expr acc.length --probe probe-multi-statement.js:5:16 --expr acc.length --probe probe-multi-statement.js:5:29 --expr acc.length probe-multi-statement.js\",\n\n\nBun v1.4.0 (macOS arm64)", + "tail": "ated 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-statement.js:5:3 --expr acc.length --probe probe-multi-statement.js:5:16 --expr acc.length --probe probe-multi-statement.js:5:29 --expr acc.length probe-multi-statement.js\",\n\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42362,7 +42418,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ocess 80304]: 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-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": { @@ -42395,7 +42451,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "son (/test/common/debugger-probe.js:55:56)\n at stdout (/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js:31: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-failure-hang-during-evaluate.js:22:1\n\nBun v1.4.0 (macOS arm64)", + "tail": "son (/test/common/debugger-probe.js:64:56)\n at stdout (/test/parallel/test-debugger-probe-failure-hang-during-evaluate.js:31: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-failure-hang-during-evaluate.js:22:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42428,7 +42484,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " at assertProbeJson (/test/common/debugger-probe.js:55:56)\n at stdout (/test/parallel/test-debugger-probe-failure-process-exit.js:25: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-failure-process-exit.js:17:1\n\nBun v1.4.0 (macOS arm64)", + "tail": " at assertProbeJson (/test/common/debugger-probe.js:64:56)\n at stdout (/test/parallel/test-debugger-probe-failure-process-exit.js:25: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-failure-process-exit.js:17:1\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -42494,7 +42550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 80312]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80312]: --- stdout ---\n\n[process 80312]: 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.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": { @@ -42527,7 +42583,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "314]: 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 --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": { @@ -42593,7 +42649,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\"\n\n[process 80318]: --- stdout ---\n\n[process 80318]: 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.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": { @@ -42626,7 +42682,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t\"\n\n[process 80320]: --- stdout ---\n\n[process 80320]: 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-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": { @@ -42692,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": { @@ -42725,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": { @@ -42758,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": { @@ -42791,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": { @@ -42824,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": { @@ -42857,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": { @@ -42890,7 +42946,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 80324]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80324]: --- stdout ---\n\n[process 80324]: 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 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": { @@ -42923,7 +42979,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 80326]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80326]: --- stdout ---\n\n[process 80326]: 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 --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": { @@ -42956,7 +43012,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rocess 80328]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80328]: --- stdout ---\n\n[process 80328]: 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 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": { @@ -42989,7 +43045,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80330]: --- stdout ---\n\n[process 80330]: 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-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": { @@ -43022,7 +43078,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 80332]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80332]: --- stdout ---\n\n[process 80332]: 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-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": { @@ -43055,7 +43111,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "0334]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80334]: --- stdout ---\n\n[process 80334]: 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 --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": { @@ -43088,7 +43144,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s 80336]: --- stdout ---\n\n[process 80336]: 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-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": { @@ -43121,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": { @@ -43154,7 +43210,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-\nerror: Script not found \"inspect\"\n\n[process 80338]: --- stdout ---\n\n[process 80338]: 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-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": { @@ -43220,7 +43276,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 80342]: --- stderr ---\nerror: Script not found \"inspect\"\n\n[process 80342]: --- stdout ---\n\n[process 80342]: 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.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": { @@ -43253,7 +43309,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " parse (unknown:1:1)\n at assertProbeJson (/test/common/debugger-probe.js:55:56)\n at stdout (/test/parallel/test-debugger-probe-timeout.js:23: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:12: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": { @@ -43288,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": { @@ -44116,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": { @@ -44691,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": { @@ -47103,7 +47159,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "alidateHeaderName],\n- validateHeaderValue: [Function: validateHeaderValue]\n- },\n- url: 'http'\n- }\n- ]\n\n generatedMessage: true,\n actual: [],\n expected: [\n [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.js:35:12", + "tail": ",\n- totalSocketCount: 0\n- },\n- maxHeaderSize: 16384,\n- request: [Function: request],\n- setGlobalProxyFromEnv: [Function: setGlobalProxyFromEnv],\n- setMaxIdleHTTPParsers: [Function: setMaxIdleHTTPParsers],\n- validateHeaderName: [Function: validateHeaderName],\n- validateHeaderValue: [Function: validateHeaderValue]\n- },\n- url: 'http'\n- }\n- ]", "retried": true }, "deno": { @@ -47423,9 +47479,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -47774,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": { @@ -47807,7 +47865,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nable;\n49 | }), input, thisArg, expectedResult);\n50 | \n51 | 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:51: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": { @@ -48031,7 +48089,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.38ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [36.00ms]", + "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": { @@ -48091,7 +48149,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.05ms]\n\n 0 pass\n 6 fail\nRan 6 tests across 1 file. [36.00ms]", + "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": { @@ -48528,7 +48586,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eFamily (node:dns:113:29)\n at validateFamilyOption (node:dns:125:23)\n at validateLookupOptions (node:dns:180:53)\n at lookup (node:dns:465:73)\n at (/test/parallel/test-dns-lookup.js:79:37)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-lookup.js:79:10)\n\nBun v1.4.0 (macOS arm64)", + "tail": "ows(() => dns.lookup('127.0.0.1\\u0000.allowed.example', {}), err);\n ^\nTypeError: The \"callback\" argument must be of type function. Received undefined\n code: \"ERR_INVALID_ARG_TYPE\"\n\n at lookup (node:dns:191:23)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-dns-lookup.js:33:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -49286,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:51501/b4bbd8ce-ae5c-46f0-a694-37db42c94849", + "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": { @@ -50131,7 +50189,7 @@ "pass": false, "timeout": false, "exit": 1, - "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: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": { @@ -50653,7 +50711,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [22.20ms]", + "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": { @@ -51098,7 +51156,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": \"ERR_ASSERTION\"\n\n at /test/parallel/test-error-reporting.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": { @@ -54615,7 +54673,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [6.08ms]", + "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": { @@ -54830,7 +54888,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.79ms]\n(pass) promise based version [1.63ms]\n\n 1 pass\n 2 fail\nRan 3 tests across 1 file. [34.00ms]", + "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": { @@ -58444,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": { @@ -58531,7 +58589,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ined,\n expected: {\n name: \"AbortError\",\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 doAppendAndCancel (/test/parallel/test-fs-promises-file-handle-append-file.js:49:16)\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": { @@ -59064,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": { @@ -60512,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": { @@ -60762,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, @@ -62826,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": { @@ -63403,7 +63459,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.94ms]\n(pass) promise based version [1.70ms]\n\n 1 pass\n 2 fail\nRan 3 tests across 1 file. [35.00ms]", + "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": { @@ -66297,11 +66353,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "p://example.org\",\n},\n expected: [Object: null prototype] {\n host: \"example.org:443\",\n origin: \"http://example.org\",\n cookie: \"\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-blank-header.js:31: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 + "exit": 0 }, "deno": { "pass": true, @@ -67194,11 +67248,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "bject: null prototype] {\n \"x-foo\": \"boom\",\n cookie: \"a=1; b=2; c=3\",\n connection: \"keep-alive\",\n host: \"localhost:51786\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-client-headers-array.js:29:12\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -67253,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": { @@ -68595,11 +68647,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "-alive\",\n \"content-length\": \"11\",\n},\n expected: [Object: null prototype] {\n connection: \"keep-alive\",\n \"content-length\": \"11\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-content-length.js:35:14\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -70436,11 +70486,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ERR_ASSERTION\"\n\n at assertResponse (/test/parallel/test-http-keep-alive-max-requests.js:17:12)\n at /test/parallel/test-http-keep-alive-max-requests.js:69:9\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -70465,11 +70513,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " at assertResponse (/test/parallel/test-http-keep-alive-pipeline-max-requests.js:17:12)\n at /test/parallel/test-http-keep-alive-pipeline-max-requests.js:73:7\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -70933,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": { @@ -71154,11 +71200,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " \"x-req-a\": \"eee, fff, ggg, hhh\",\n \"x-req-b\": \"iii; jjj; kkk; lll\",\n host: \"127.0.0.1:53278\",\n \"transfer-encoding\": \"chunked\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-multiple-headers.js:22:12\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": false, @@ -71467,9 +71511,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -71741,11 +71787,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "r: Missing expected exception (Error).\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_HTTP_HEADERS_SENT\",\n name: \"Error\",\n message: \"Cannot set trailing headers after they are sent to the client\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-outgoing-proto.js:132:8\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -71824,9 +71868,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -72245,9 +72291,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -72472,7 +72520,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "bject: null prototype] {\n host: \"localhost:53364\",\n \"transfer-encoding\": \"CHUNKED\",\n \"x-bar\": \"yoyoyo\",\n connection: \"keep-alive\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http-raw-headers.js:59:10\n at emit (node:events:103:22)\n at onNodeHTTPRequest (node:_http_server:531:22)\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": { @@ -72552,11 +72600,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "IncomingClient (node:_http_client:422:137)\n at execute (unknown:1:1)\n at processClientData (node:_http_client:349:54)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -72961,9 +73007,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -73771,7 +73819,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "est/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)\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": { @@ -74102,11 +74150,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "SERTION\"\n\n at assertResponse (/test/parallel/test-http-server-keep-alive-defaults.js:12:10)\n at /test/parallel/test-http-server-keep-alive-defaults.js:67:7\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -74131,11 +74177,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": " assertResponse (/test/parallel/test-http-server-keep-alive-max-requests-null.js:12:10)\n at /test/parallel/test-http-server-keep-alive-max-requests-null.js:66:7\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -75551,11 +75595,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "llel/test-http-upgrade-agent.js:82:12\n at emit (node:events:106:22)\n at processClientData (node:_http_client:363:276)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -75607,11 +75649,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "lel/test-http-upgrade-client.js:91:14\n at emit (node:events:106:22)\n at processClientData (node:_http_client:363:276)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -75717,11 +75757,9 @@ "exit": 0 }, "bun": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true + "pass": true, + "timeout": false, + "exit": 0 }, "deno": { "pass": false, @@ -77923,11 +77961,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "ge: true,\n actual: [Object: null prototype] {},\n expected: null,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-http2-compat-serverrequest-trailers.js:25: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 + "exit": 0 }, "deno": { "pass": true, @@ -79236,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 82763]: --- stdout ---\n\n[process 82763]: 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": { @@ -83219,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": { @@ -84136,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": { @@ -84249,9 +84285,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -84312,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": { @@ -85605,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": { @@ -86357,7 +86395,7 @@ "pass": false, "timeout": false, "exit": 1, - "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] 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": { @@ -86568,7 +86606,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ws://127.0.0.1:54641/1efc74bc-5148-47cd-88b2-5c253624e5b7\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": { @@ -86837,7 +86875,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "process 83641]: --- stdout ---\n\n[process 83641]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.2692\",\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": { @@ -86932,7 +86970,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "138d9c91f\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)", + "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": { @@ -87197,7 +87235,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:54671/6a83842a-ad90-4c2a-ae7d-c97aa42f3977", + "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": { @@ -87437,7 +87475,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [2.62ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [43.00ms]", + "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": { @@ -87497,7 +87535,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [40.00ms]", + "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": { @@ -87526,7 +87564,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [51.00ms]", + "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": { @@ -87555,7 +87593,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nspector ---------------------\nListening:\n ws://localhost:54681/5159afa1-e533-4211-8012-6ffd80270f3f\nInspect in browser:\n https://debug.bun.sh/#localhost:54681/5159afa1-e533-4211-8012-6ffd80270f3f\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": { @@ -87876,7 +87914,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "('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 (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-promises.js:47:26)", + "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": { @@ -88137,7 +88175,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ain.js:92:20)\n\n18 | \n19 | function post(message, data) {\n20 | return new Promise((resolve, reject) => {\n21 | session.post(message, data, (err, result) => {\n22 | if (err)\n23 | reject(new Error(JSON.stringify(err)));\n ^\nerror: {}\n at (/test/parallel/test-inspector-tracing-domain.js:23: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": { @@ -88226,7 +88264,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(node:_http_client:349:54)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72) {\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: 'fail',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}", + "tail": "ode:_http_client:349:54)\n at socketOnDataInner (node:_http_client:342:24)\n at emit (node:events:100:22)\n at addChunk (internal:streams/readable:267:47)\n at readableAddChunkPushByteMode (internal:streams/readable:245:18)\n at data (node:net:633:72) {\n generatedMessage: false,\n actual: undefined,\n expected: undefined,\n operator: 'fail',\n code: 'ERR_ASSERTION',\n diff: 'simple'\n}\n1", "retried": true }, "deno": { @@ -88884,7 +88922,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -88915,7 +88953,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -88946,7 +88984,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -88977,7 +89015,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -89008,7 +89046,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -89068,7 +89106,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -89097,7 +89135,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -89128,7 +89166,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -89181,9 +89219,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -89215,7 +89255,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [48.00ms]", + "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": { @@ -89368,7 +89408,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (node:test:1448:63)\n at processTicksAndRejections (native:7:39)\n(fail) worker_threads.isInternalThread > should be true inside the loader thread [10.21ms]\n(pass) worker_threads.isInternalThread > should be false inside the main thread [0.12ms]\n(pass) worker_threads.isInternalThread > should be false inside a regular worker thread [1.62ms]\n\n 2 pass\n 1 fail\nRan 3 tests across 1 file. [40.00ms]", + "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": { @@ -89939,9 +89979,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "Charset=value');\n169 | assert.strictEqual(mime.params.get('Charset'), 'value');\n ^\nAssertionError: Expected values to be strictly equal:\n\nnull !== 'value'\n\n generatedMessage: true,\n actual: null,\n expected: \"value\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-mime-api.js:169:10\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": false, @@ -90566,7 +90608,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-module-print-timing.mjs:157:10\n at node:test:1445:26\n at executeTestNode (node:test:1448:63)\n(fail) should support enable tracing dynamically [33.09ms]\n(pass) should not print when is disabled and found duplicated labels (GH-54265) [9.87ms]\n\n 1 pass\n 4 fail\nRan 5 tests across 1 file. [107.00ms]", + "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": { @@ -91431,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": { @@ -92069,9 +92111,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -94139,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": { @@ -94855,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": { @@ -95050,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": { @@ -95629,7 +95673,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [72.02ms]\n\n 3 pass\n 2 fail\nRan 5 tests across 1 file. [224.00ms]", + "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": { @@ -95664,7 +95708,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [28.43ms]", + "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": { @@ -95755,7 +95799,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "SSERTION\"\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-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 [30.86ms]", + "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": { @@ -95790,7 +95834,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:862: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. [26.00ms]", + "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": { @@ -96001,7 +96045,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [28.00ms]", + "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": { @@ -96252,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": { @@ -96320,7 +96364,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.77ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [55.00ms]", + "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": { @@ -96357,7 +96401,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.11ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [29.00ms]", + "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": { @@ -97008,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": { @@ -97321,7 +97365,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "nError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1788135184561.1\n- 1788135184535.022\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": { @@ -97414,7 +97458,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Mismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-performance-gc.js:28:46)", + "tail": "Mismatched function calls. Expected at least 1, actual 0.\n at (/test/parallel/test-performance-gc.js:30:46)", "retried": true }, "deno": { @@ -97584,7 +97628,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ".strictEqual(nodeTiming.startTime, 0);\n ^\nAssertionError: Expected values to be strictly equal:\n+ actual - expected\n\n+ 1788135186382.028\n- 0\n\n generatedMessage: true,\n actual: 1788135186382.028,\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": { @@ -97960,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": { @@ -97993,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": { @@ -98131,7 +98175,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.62ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [133.00ms]", + "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": { @@ -98164,7 +98208,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "__filename);\n22 | assert.strictEqual(messages.length, 0);\n23 | \n24 | // Denied permission should publish\n25 | 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:25: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": { @@ -98702,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": { @@ -98803,7 +98847,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/fixtures/permission/fs-read.js:41:10\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.js:50:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " ^\nTypeError: undefined is not an object (evaluating 'process.permission.has')\n at /[eval]:6:36\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.js:73:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -99156,9 +99200,9 @@ }, "bun": { "pass": false, - "timeout": false, - "exit": 1, - "tail": "\n15 | const assert = require('assert');\n16 | \n17 | {\n18 | 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-report.js:18:10\n\nBun v1.4.0 (macOS arm64)", + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", "retried": true }, "deno": { @@ -99645,7 +99689,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ed'));\n31 | }\n32 | \n33 | {\n34 | assert.throws(() => {\n ^\nAssertionError: Missing expected exception.\n generatedMessage: false,\n actual: undefined,\n expected: {\n code: \"ERR_ACCESS_DENIED\",\n permission: \"Net\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-net-uds.js:34:10\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": { @@ -99868,7 +99912,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ning: The flag \\x2d\\x2dallow\\x2daddons must be used with extreme caution/. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /SecurityWarning: The flag \\x2d\\x2dallow\\x2daddons must be used with extreme caution/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-warning-flags.js:28:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " \\x2d\\x2dallow\\x2daddons must be used with extreme caution/. Input:\n\n''\n\n generatedMessage: true,\n actual: \"\",\n expected: /\\[PERM\\d{4}\\] SecurityWarning: The flag \\x2d\\x2dallow\\x2daddons must be used with extreme caution/,\n operator: \"match\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-permission-warning-flags.js:29:10\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -100320,7 +100364,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ted: \"A\\nhello\\n\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-preload.js:93:10\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": { @@ -101050,7 +101094,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s-native-stack --jitless --max-heap-size --max-old-space-size --max-semi-space-size but are not in process.allowedNodeEnvironmentFlags\n\n149 !== 0\n\n generatedMessage: false,\n actual: 149,\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": { @@ -102040,11 +102084,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": ",\n},\n expected: Set(14) {\n \"inspector\",\n \"debug\",\n \"uv\",\n \"ipv6\",\n \"openssl_is_boringssl\",\n \"dtls\",\n \"quic\",\n \"tls_alpn\",\n \"tls_sni\",\n \"tls_ocsp\",\n \"tls\",\n \"cached_builtins\",\n \"require_module\",\n \"typescript\",\n},\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-process-features.js:24:8\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -102069,9 +102111,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -102103,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:85958) [DEP0192] DeprecationWarning: The _tls_common module is deprecated. Use `node:tls` instead.\n(node:85958) [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": { @@ -102548,7 +102592,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [17.21ms]\n(pass) process.loadEnvFile() > loadEnvFile does not mutate --env-file output [23.56ms]\n\n 5 pass\n 1 fail\nRan 6 tests across 1 file. [114.00ms]", + "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": { @@ -104200,7 +104244,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ror(\"ERR_QUIC_TRANSPORT_ERROR\", \"QUIC transport error\", \"transport\", code, reason, errorName));\n ^\nerror: QUIC transport error 376: no application protocol\n reason: \"no application protocol\",\n code: \"ERR_QUIC_TRANSPORT_ERROR\"\n\n at [kFinishClose] (internal:quic/quic:1742:35)\n at onSessionClose (internal:quic/quic:276:100)\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": { @@ -104769,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": { @@ -105335,9 +105379,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "Mismatched function calls. Expected exactly 1, actual 2.\n at /test/parallel/test-quic-diagnostics-channel-path.mjs:21:46", + "retried": true }, "deno": { "pass": true, @@ -106714,9 +106760,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "Mismatched function calls. Expected exactly 1, actual 0.\n at /test/parallel/test-quic-h3-settings.mjs:162:20\n at processTicksAndRejections (native:7:39)\nMismatched function calls. Expected exactly 1, actual 0.\n at /test/parallel/test-quic-h3-settings.mjs:174:33\n at processTicksAndRejections (native:7:39)", + "retried": true }, "deno": { "pass": true, @@ -107040,9 +107088,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -107067,9 +107117,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -107180,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": { @@ -107480,11 +107532,9 @@ "exit": 0 }, "bun": { - "pass": false, + "pass": true, "timeout": false, - "exit": 1, - "tail": "3)\n436 | process.nextTick(() => {\n437 | throw new SuppressedError(err, error, err?.message);\n438 | });\n439 | });\n440 | } catch (err) {\n441 | throw new SuppressedError(err, error, err?.message);\n ^\nSuppressedError: Expected values to be strictly equal:\n\nfalse !== true\n\n at (internal:quic/quic:441:13)\n\nBun v1.4.0 (macOS arm64)", - "retried": true + "exit": 0 }, "deno": { "pass": true, @@ -108081,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": { @@ -108134,9 +108184,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -108512,9 +108564,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -108650,7 +108704,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n22 | // Verify this IS a pooled buffer (byteLength < buffer.byteLength).\n23 | 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:23:1\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": { @@ -108973,11 +109027,9 @@ "exit": 0 }, "bun": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true + "pass": true, + "timeout": false, + "exit": 0 }, "deno": { "pass": true, @@ -109002,9 +109054,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -109029,11 +109083,9 @@ "exit": 0 }, "bun": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true + "pass": true, + "timeout": false, + "exit": 0 }, "deno": { "pass": true, @@ -109901,9 +109953,11 @@ "exit": 0 }, "bun": { - "pass": true, - "timeout": false, - "exit": 0 + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true }, "deno": { "pass": true, @@ -109955,9 +110009,11 @@ "exit": 0 }, "bun": { - "pass": true, - "timeout": false, - "exit": 0 + "pass": false, + "timeout": true, + "exit": null, + "tail": "Test timed out after 20000ms", + "retried": true }, "deno": { "pass": true, @@ -110009,9 +110065,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -110036,9 +110094,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -110063,11 +110123,9 @@ "exit": 0 }, "bun": { - "pass": false, - "timeout": true, - "exit": null, - "tail": "Test timed out after 20000ms", - "retried": true + "pass": true, + "timeout": false, + "exit": 0 }, "deno": { "pass": true, @@ -110473,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": { @@ -110568,34 +110626,7 @@ "exit": 0 } }, - "parallel/test-quic-writer-async-dispose-ended.mjs": { - "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-quic-writer-backpressure.mjs": { + "parallel/test-quic-writer-async-dispose-ended.mjs": { "node": { "pass": true, "timeout": false, @@ -110622,7 +110653,7 @@ "exit": 0 } }, - "parallel/test-quic-writer-write-rejects.mjs": { + "parallel/test-quic-writer-backpressure.mjs": { "node": { "pass": true, "timeout": false, @@ -110634,9 +110665,40 @@ "exit": 0 }, "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "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": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "node25": { "pass": true, "timeout": false, "exit": 0 + } + }, + "parallel/test-quic-writer-write-rejects.mjs": { + "node": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "nub": { + "pass": true, + "timeout": false, + "exit": 0 + }, + "bun": { + "pass": false, + "timeout": false, + "exit": 1, + "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": { "pass": true, @@ -111959,7 +112021,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.39ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [42.00ms]", + "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": { @@ -114209,7 +114271,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.54ms]\n\n1 tests failed:\n(fail) REPL tab completion (core functionality) > works with lexically scoped variables [1.54ms]\n\n 28 pass\n 1 fail\nRan 29 tests across 1 file. [72.00ms]", + "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": { @@ -114526,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": { @@ -114617,7 +114679,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "stNode (node:test:1448:45)\n at (node:test:1591:20)\n(fail) async: true, handleErrorReturn: unhandled [0.56ms]\n1 | setImmediate(() => { throw new Error(\"testerror\") })\n ^\nerror: testerror\n at (REPL12:1:50)\n(fail) async: true, handleErrorReturn: badvalue [1.96ms]\n\n 4 pass\n 4 fail\nRan 8 tests across 1 file. [87.00ms]", + "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": { @@ -115152,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": { @@ -115266,7 +115328,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [31.00ms]", + "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": { @@ -115432,7 +115494,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.56ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [30.00ms]", + "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": { @@ -115463,7 +115525,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.74ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [58.00ms]", + "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": { @@ -115494,7 +115556,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.53ms]", + "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": { @@ -115527,7 +115589,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.92ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [50.00ms]", + "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": { @@ -115655,7 +115717,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.60ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [54.00ms]", + "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": { @@ -115686,7 +115748,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [22.66ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [63.00ms]", + "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": { @@ -115721,7 +115783,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "tEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-coverage-source-map.js:120: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 [6.61ms]\n\n 0 pass\n 6 fail\nRan 6 tests across 1 file. [82.00ms]", + "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": { @@ -115756,7 +115818,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [6.63ms]", + "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": { @@ -115789,7 +115851,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "Error: 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-runner-coverage.js:475: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.93ms]", + "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": { @@ -115851,7 +115913,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [25.01ms]", + "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": { @@ -115884,7 +115946,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [25.28ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [55.00ms]", + "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": { @@ -115913,7 +115975,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [27.00ms]", + "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": { @@ -115942,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": { @@ -115975,7 +116037,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.19ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [42.00ms]", + "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": { @@ -116010,7 +116072,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.67ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [53.00ms]", + "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": { @@ -116043,7 +116105,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [62.00ms]", + "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": { @@ -116215,7 +116277,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [10.60ms]", + "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": { @@ -116277,7 +116339,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [23.09ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [102.00ms]", + "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": { @@ -116337,7 +116399,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [21.45ms]", + "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": { @@ -116461,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": { @@ -116494,7 +116556,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [67.00ms]", + "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": { @@ -116583,7 +116645,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [22.34ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [49.00ms]", + "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": { @@ -116643,7 +116705,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s]\n(pass) throws if setting a non-writable property [0.05ms]\n(pass) throws if property does not exist [0.07ms]\n(pass) throws if object is null [0.04ms]\n(pass) local property mocks are auto restored after the test finishes [0.23ms]\n\n2 tests failed:\n(fail) mocks a constructor [1.61ms]\n(fail) method() fails if method cannot be redefined [0.26ms]\n\n 52 pass\n 2 fail\nRan 54 tests across 1 file. [37.00ms]", + "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": { @@ -116674,7 +116736,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.36ms]", + "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": { @@ -116736,7 +116798,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " 0,\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-runner-no-isolation-filtering.js:86: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 [19.78ms]\n\n 0 pass\n 4 fail\nRan 4 tests across 1 file. [113.00ms]", + "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": { @@ -116769,7 +116831,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "root>\\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 [21.65ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [93.00ms]", + "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": { @@ -116831,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": { @@ -116889,7 +116951,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "out > should handle basic timeout scenarios [527.70ms]\n(pass) test planning > with timeout > should fail when timeout expires before plan is met [526.81ms]\n(pass) test planning > with timeout > should handle wait:true option specifically [526.50ms]\n(pass) test planning > with timeout > should handle wait:false option (should not wait) [24.54ms]\n\n 14 pass\n 0 fail\nRan 14 tests across 1 file. [1.80s]", + "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": { @@ -116920,7 +116982,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [51.04ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [76.00ms]", + "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": { @@ -116957,7 +117019,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [7.56ms]", + "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": { @@ -117017,7 +117079,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [22.22ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [47.00ms]", + "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": { @@ -117048,7 +117110,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "T_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)\n(fail) require('node:test').run coverage settings > run with coverage > should run with coverage [0.16ms]", + "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": { @@ -117110,7 +117172,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [10.57ms]", + "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": { @@ -117141,7 +117203,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [8.00ms]", + "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": { @@ -117174,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": { @@ -117207,7 +117269,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.14ms]", + "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": { @@ -117238,7 +117300,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [37.00ms]", + "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": { @@ -117296,7 +117358,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " StringPrototypePadEnd,\n27 | StringPrototypePadStart,\n28 | StringPrototypeRepeat,\n29 | StringPrototypeSlice,\n30 | StringPrototypeSplit,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/test_runner/utils.js:31: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": { @@ -117354,7 +117416,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [24.19ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [259.00ms]", + "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": { @@ -117387,7 +117449,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.45ms]\n\n 2 pass\n 3 fail\nRan 5 tests across 1 file. [128.00ms]", + "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": { @@ -117604,7 +117666,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [40.17ms]\n\n 0 pass\n 5 fail\nRan 5 tests across 1 file. [118.00ms]", + "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": { @@ -117724,7 +117786,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [29.00ms]", + "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": { @@ -117817,7 +117879,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [20.88ms]\n\n 0 pass\n 7 fail\nRan 7 tests across 1 file. [188.00ms]", + "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": { @@ -117848,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-------------------------------\n\n\n 0 pass\n 0 fail\n 1 error\nRan 0 tests across 1 file. [40.00ms]", + "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": { @@ -117999,7 +118061,7 @@ "pass": false, "timeout": false, "exit": 1, - "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) [40.80ms]\n\n 1 pass\n 1 fail\nRan 2 tests across 1 file. [108.00ms]", + "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": { @@ -118593,7 +118655,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "odule not found \"/test/.tmp.3767/snapshot.blob\"\n\n[process 87417]: --- stdout ---\n\n[process 87417]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3767\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3767/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": { @@ -118655,7 +118717,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 87421]: --- stderr ---\nerror: Script not found \"node:embedded_snapshot_main\"\n\n[process 87421]: --- stdout ---\n\n[process 87421]: status = 1, signal = null\nerror: - process terminated with status 1, expected 9\n options: {\n cwd: \"/test/.tmp.3769\",\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": { @@ -118686,7 +118748,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "87424]: --- stdout ---\n\n[process 87424]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3770\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3770/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": { @@ -118746,7 +118808,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "shot.blob\"\n\n[process 87428]: --- stdout ---\n\n[process 87428]: status = 1, signal = null\nerror: - stderr did not match /Cannot read snapshot configuration from snapshot\\.json/\n options: {\n cwd: \"/test/.tmp.3772\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3772/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": { @@ -118808,7 +118870,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "pshot.blob\"\n\n[process 87432]: --- stdout ---\n\n[process 87432]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3774\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3774/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": { @@ -118839,7 +118901,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "blob\"\n\n[process 87433]: --- stdout ---\n\n[process 87433]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3775\",\n encoding: \"utf8\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3775/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": { @@ -119184,7 +119246,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ate_default_snapshot_source\"\n\n[process 87456]: --- stdout ---\n\n[process 87456]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n env: [Object ...],\n cwd: \"/test/.tmp.3786\",\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": { @@ -119215,7 +119277,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "stdout ---\n\n[process 87457]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3787\",\n env: [Object ...],\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3787/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": { @@ -119246,7 +119308,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "cess 87460]: --- stdout ---\n\n[process 87460]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3788\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --stack-trace-limit=50 --snapshot-blob /test/.tmp.3788/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": { @@ -119339,7 +119401,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s>/test/.tmp.3791/snapshot.blob\"\n\n[process 87465]: --- stdout ---\n\n[process 87465]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.3791\",\n},\n command: \"~/.cache/nub/cross-runtime/bun-1.4.0/bin/bun --snapshot-blob /test/.tmp.3791/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": { @@ -119401,7 +119463,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t found \"/test/.tmp.3793/snapshot.blob\"\\n'\n\n generatedMessage: true,\n actual: \"error: Module not found \\\"/test/.tmp.3793/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": { @@ -119569,7 +119631,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [35.00ms]", + "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": { @@ -119660,7 +119722,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ^\nENOENT: no such file or directory, scandir '/test/.tmp.3802/source_map_1'\n path: \"/test/.tmp.3802/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": { @@ -119805,7 +119867,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [4.63ms]\n\n 16 pass\n 1 fail\nRan 17 tests across 1 file. [56.00ms]", + "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": { @@ -119831,9 +119893,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -120028,9 +120092,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -120089,7 +120155,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "input is false [0.93ms]\n(pass) options.allowBareNamedParameters > throws when input is not a boolean [1.07ms]\n(pass) options.allowBareNamedParameters > setAllowBareNamedParameters can override prepare option [2.13ms]\n\n1 tests failed:\n(fail) StatementSync.prototype.iterate() > iterator keeps the prepared statement from being collected [0.56ms]\n\n 44 pass\n 1 fail\nRan 45 tests across 1 file. [96.00ms]", + "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": { @@ -120122,7 +120188,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "on. (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:166:9)\n at async (node:test:1445:26)\n at async executeTestNode (node:test:1448:63)\n(fail) tag store prevents circular reference leaks [40.53ms]\n\n 9 pass\n 2 fail\nRan 11 tests across 1 file. [91.00ms]", + "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": { @@ -120236,7 +120302,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "R\"\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.17ms]\n\n 17 pass\n 4 fail\nRan 21 tests across 1 file. [55.00ms]", + "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": { @@ -122115,9 +122181,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122146,9 +122214,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122177,9 +122247,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122208,9 +122280,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122239,9 +122313,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "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: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": { "pass": false, @@ -122270,9 +122346,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122417,9 +122495,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122448,9 +122528,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122510,9 +122592,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122630,9 +122714,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122661,9 +122747,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122692,9 +122780,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "pus>/test/common/index.js:568:12)\n at applyStatefulSyncTransform (internal:streams/iter/pull:252:25)\n at createSyncPipeline (internal:streams/iter/pull:274:10)\n at pipeToSync (internal:streams/iter/pull:433:20)\n at testPipeToSyncWriterTransformMethodIgnored (/test/parallel/test-stream-iter-pipeto.js:165:3)\n at /test/parallel/test-stream-iter-pipeto.js:330:3", + "retried": true }, "deno": { "pass": false, @@ -122723,9 +122813,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "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: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": { "pass": false, @@ -122785,9 +122877,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122816,9 +122910,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122847,9 +122943,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -122940,9 +123038,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -123000,9 +123100,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -123060,9 +123162,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -123209,9 +123313,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -123298,9 +123404,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -123329,9 +123437,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -123360,9 +123470,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -124292,9 +124404,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -124490,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": { @@ -125394,9 +125508,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -127735,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": { @@ -128473,7 +128589,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.65ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [43.00ms]", + "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": { @@ -128506,7 +128622,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [12.92ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [38.00ms]", + "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": { @@ -128537,7 +128653,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [12.21ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [39.00ms]", + "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": { @@ -128684,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": { @@ -129406,7 +129522,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -129435,7 +129551,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -130680,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": { @@ -130710,9 +130826,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -134026,7 +134144,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ": choose exactly one of --use-system-ca, --use-openssl-ca, or --use-bundled-ca\n\n[process 88944]: --- stdout ---\n\n[process 88944]: 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": { @@ -134162,9 +134280,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -134891,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": { @@ -135283,7 +135403,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "TypeError: unable to verify the first certificate\n path: \"https://localhost:55819/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": { @@ -135426,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": { @@ -137966,7 +138086,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [1.35ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [46.00ms]", + "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": { @@ -138282,9 +138402,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": " true,\n actual: [ \"inputs\", \"protocol\", \"username\", \"password\", \"hostname\", \"port\", \"pathname\", \"search\", \"hash\" ],\n expected: [ \"hash\", \"hostname\", \"inputs\", \"password\", \"pathname\", \"port\", \"protocol\", \"search\", \"username\" ],\n operator: \"deepStrictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-urlpattern.js:34:10\n\nBun v1.4.0 (macOS arm64)", + "retried": true }, "deno": { "pass": false, @@ -138428,7 +138550,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -138457,7 +138579,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -138486,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": { @@ -138981,7 +139103,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -139012,7 +139134,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [41.00ms]", + "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": { @@ -139043,7 +139165,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -139447,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": { @@ -139536,7 +139658,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ageDirectory);\n ^\nENOENT: no such file or directory, scandir '/test/.tmp.4498/cov_1'\n path: \"/test/.tmp.4498/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": { @@ -140491,7 +140613,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "[process 89371]: --- stderr ---\nerror: No such built-in module: node:vfs\n\nBun v1.4.0 (macOS arm64)\n\n[process 89371]: --- stdout ---\n\n[process 89371]: 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": { @@ -142636,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": { @@ -145094,7 +145216,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [1.55ms]\n\n 2 pass\n 2 fail\nRan 4 tests across 1 file. [42.00ms]", + "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": { @@ -145123,7 +145245,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [1.65ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [41.00ms]", + "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": { @@ -145648,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": { @@ -146206,7 +146328,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:55928/9a9e45b1-a46d-4646-9c7d-e756a2893900\nInspect in browser:\n https://debug.bun.sh/#localhost:55928/9a9e45b1-a46d-4646-9c7d-e756a2893900\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": { @@ -146318,7 +146440,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [29.00ms]", + "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": { @@ -146349,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": { @@ -146380,7 +146502,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [36.00ms]", + "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": { @@ -146525,7 +146647,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t 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 [8.49ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [44.00ms]", + "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": { @@ -146556,7 +146678,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n 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.30ms]\n\n 0 pass\n 9 fail\nRan 9 tests across 1 file. [83.00ms]", + "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": { @@ -146585,7 +146707,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:127:9)\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [43.00ms]", + "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": { @@ -146674,7 +146796,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "6 | ObjectPrototypeHasOwnProperty,\n 7 | ObjectSetPrototypeOf,\n 8 | SafeSet,\n 9 | SymbolToStringTag,\n10 | Uint8Array,\n11 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/keys.js:11: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": { @@ -147062,9 +147184,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "tail": "_ATTRIBUTE_ERR: 10,\n INVALID_STATE_ERR: 11,\n SYNTAX_ERR: 12,\n INVALID_MODIFICATION_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}", + "retried": true }, "deno": { "pass": false, @@ -147127,7 +147251,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:371", + "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": { @@ -147221,9 +147345,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -147531,9 +147657,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -147562,9 +147690,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -147874,9 +148004,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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 testSmallOrderVerify (/test/parallel/test-webcrypto-sign-verify-eddsa.js:51:10)\n at /test/parallel/test-webcrypto-sign-verify-eddsa.js:305:17", + "retried": true }, "deno": { "pass": false, @@ -148127,7 +148259,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "5 | MathPow,\n 6 | NumberParseInt,\n 7 | ObjectPrototypeHasOwnProperty,\n 8 | StringPrototypeStartsWith,\n 9 | StringPrototypeToLowerCase,\n10 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/crypto/webidl.js:10: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": { @@ -148160,7 +148292,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:427: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": { @@ -148280,7 +148412,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ge: true,\n actual: false,\n expected: true,\n operator: \"==\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-webstorage.js:138: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 [22.68ms]\n\n 1 pass\n 8 fail\nRan 9 tests across 1 file. [162.00ms]", + "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": { @@ -148431,7 +148563,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [1.43ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [34.00ms]", + "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": { @@ -148487,7 +148619,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [52.00ms]", + "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": { @@ -148771,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": { @@ -148916,7 +149048,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -149111,7 +149243,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -149333,7 +149465,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17: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": { @@ -149391,7 +149523,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "26 | SymbolDispose,\n27 | SymbolIterator,\n28 | SymbolToStringTag,\n29 | TypedArrayPrototypeGetLength,\n30 | Uint8Array,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:31:5)\n at (/test/parallel/test-whatwg-readablestream.js:35: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": { @@ -149733,7 +149865,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "l);\n32 | assert.strictEqual(params.toString(), '');\n ^\nAssertionError: Expected values to be strictly equal:\n\n'null=' !== ''\n\n generatedMessage: true,\n actual: \"null=\",\n expected: \"\",\n operator: \"strictEqual\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/parallel/test-whatwg-url-custom-searchparams-constructor.js:32:10\n\nBun v1.4.0 (macOS arm64)", + "tail": " new URLSearchParams([[1]]), tupleError);\n ^\nTypeError: Type error\n at (/test/parallel/test-whatwg-url-custom-searchparams-constructor.js:50:23)\n at getActual (node:assert:338:7)\n at throws (node:assert:428:33)\n at (/test/parallel/test-whatwg-url-custom-searchparams-constructor.js:50:10)\n\nBun v1.4.0 (macOS arm64)", "retried": true }, "deno": { @@ -150532,7 +150664,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17: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": { @@ -150594,7 +150726,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ringTag,\n29 | TypedArrayPrototypeGetLength,\n30 | Uint8Array,\n31 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/readablestream.js:31: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. [48.00ms]", + "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": { @@ -150683,7 +150815,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "12 | PromisePrototypeThen,\n13 | ReflectApply,\n14 | ReflectGet,\n15 | Symbol,\n16 | Uint8Array,\n17 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/webstreams/util.js:17: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": { @@ -151400,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": { @@ -152022,7 +152154,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eelist';\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 [7.85ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [89.00ms]", + "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": { @@ -152107,7 +152239,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eapUsed: 2153514,\n external: 866922,\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)", + "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": { @@ -153936,7 +154068,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)\n at f (blob:e00932ea-7e3f-4fba-9920-8ae69d21103f:5:5)", + "tail": "mum call stack size exceeded\",\n},\n operator: \"throws\",\n diff: \"simple\",\n code: \"ERR_ASSERTION\"\n\n at /test/common/index.js:743:12\n at runWorker (/test/parallel/test-worker-stack-overflow-stack-size.js:39:6)\n at /test/parallel/test-worker-stack-overflow-stack-size.js:48:27\n at processTicksAndRejections (native:7:39)\n\nSyntaxError: Unexpected %", "retried": true }, "deno": { @@ -155023,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": { @@ -156184,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": { @@ -156295,9 +156427,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -156326,9 +156460,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -156358,7 +156494,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ternal;\n16 | \n17 | assert((afterGC - before) / (afterCreation - before) <= 0.05,\n ^\nAssertionError: Expected after-GC delta 103895 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": { @@ -156546,9 +156682,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": true, @@ -156687,9 +156825,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -157971,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": { @@ -158030,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, @@ -158176,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, @@ -158258,7 +158412,7 @@ "pass": false, "timeout": false, "exit": 7, - "tail": "qual:\n+ actual - expected\n\n Comparison {\n+ code: 'ENOMEM',\n+ message: \"ENOMEM: not enough memory, read '/test/.tmp.5077/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": { @@ -159741,7 +159895,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [25.54ms]\n\n 0 pass\n 3 fail\nRan 3 tests across 1 file. [101.00ms]", + "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": { @@ -160699,7 +160853,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "-config.json\"\nnote: Bun cannot run json files directly\n\n[process 92608]: --- stdout ---\n\n[process 92608]: 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.5160\",\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": { @@ -160730,7 +160884,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "config.json\"\nnote: Bun cannot run json files directly\n\n[process 92620]: --- stdout ---\n\n[process 92620]: 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.5161\",\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": { @@ -161247,7 +161401,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "non-existent-relative.json\"\n\n[process 92702]: --- stdout ---\n\n[process 92702]: 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.5180\",\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": { @@ -162114,9 +162268,11 @@ "exit": 0 }, "bun": { - "pass": true, + "pass": false, "timeout": false, - "exit": 0 + "exit": 1, + "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": { "pass": false, @@ -163327,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": { @@ -163694,7 +163850,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [82.00ms]", + "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": { @@ -163785,7 +163941,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -164075,7 +164231,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -164104,7 +164260,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "45 | SymbolFor,\n46 | SymbolPrototypeGetDescription,\n47 | SymbolReplace,\n48 | SymbolSplit,\n49 | globalThis,\n50 | } = primordials;\n ^\nReferenceError: primordials is not defined\n at (/lib/internal/util.js:50: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": { @@ -164671,7 +164827,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n\n[process 14045]: --- stdout ---\nfiles found in working directory before worker starts []\n\n[process 14045]: status = 1, signal = null\nerror: - process terminated with status 1, expected 0\n options: {\n cwd: \"/test/.tmp.5469\",\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": { @@ -164791,7 +164947,7 @@ "pass": false, "timeout": false, "exit": 1, - "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 [5.00ms]\n\n 0 pass\n 2 fail\nRan 2 tests across 1 file. [215.00ms]", + "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": { @@ -164828,7 +164984,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " \"https://localhost:56260/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 [33.21ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [140.00ms]", + "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": { @@ -164865,7 +165021,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "th: \"https://localhost:60106/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 [165.26ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [201.00ms]", + "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": { @@ -164993,7 +165149,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "//localhost:60114/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 [171.33ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [211.00ms]", + "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": { @@ -165030,7 +165186,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "\n 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 [20.15ms]\n\n 0 pass\n 1 fail\nRan 1 test across 1 file. [53.00ms]", + "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": { @@ -165063,7 +165219,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "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)\n\nBun v1.4.0 (macOS arm64)", + "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": { @@ -165127,7 +165283,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "rnal-frames>\\n ...\\n1..2\\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)", + "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": { @@ -165160,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": { @@ -165255,7 +165411,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:292: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": { @@ -165594,7 +165750,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:292: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": { @@ -165623,7 +165779,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:292: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": { @@ -166338,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": { @@ -166621,7 +166777,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "n duration_ms: *\\n type: 'test'\\n ...\\n 1..1\\n ok 1 - nested describe\\n ---\\n duration_ms: *\\n type: 'suite'\\n ...\\n 1..1\\nok 7 - describe only = undefined, with nested only subtest\\n ---\\n duration_ms: *\\n type: 'suite'\\n ...\\n# Subtest: describe only = true, with nested subtests\\n # Subtest: async subtest should run\\n ok 1 - a", + "tail": "duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- ' 1..4\\n' +\n- 'ok 9 - nested tests with run only\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '1..9\\n' +\n- '# tests 28\\n' +\n- '# suites 7\\n' +\n- '# pass 24\\n' +\n- '# fail 0\\n' +\n- '# cancelled 0\\n' +\n- '# skipped 4\\n' +\n- '# todo 0\\n' +\n- '# duration_ms *\\n'", "retried": true }, "deno": { @@ -166652,7 +166808,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "uration_ms: *\\n type: 'test'\\n ...\\n 1..1\\n ok 2 - +short running\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n 1..2\\nok 30 - top level\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n# Subtest: invalid subtest - pass but subtest fails\\nok 31 - invalid subtest - pass but subtest fails\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n# Subtest: sy", + "tail": " ' ...\\n' +\n- '# Subtest: sync t is this in test\\n' +\n- 'ok 45 - sync t is this in test\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '# Subtest: async t is this in test\\n' +\n- 'ok 46 - async t is this in test\\n' +\n- ' ---\\n' +\n- ' duration_ms: *\\n' +\n- \" type: 'test'\\n\" +\n- ' ...\\n' +\n- '# Subtest: cal'... 11708 more characters", "retried": true }, "deno": { @@ -166718,7 +166874,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "sts 144\\nℹ suites 12\\nℹ pass 144\\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)", + "tail": "(*ms)\\n' +\n- ' ✔ mixed-await-normal 3 (*ms)\\n' +\n- ' ✔ mixed-await-normal block (*ms)\\n' +\n- ' ✔ scenario mixed-await-normal (*ms)\\n' +\n- '✔ nested-scenarios (*ms)\\n' +\n- 'ℹ Randomized test order seed: 1\\n' +\n- 'ℹ tests 144\\n' +\n- 'ℹ suites 12\\n' +\n- 'ℹ pass 144\\n' +\n- 'ℹ fail 0\\n' +\n- 'ℹ cancelled 0\\n' +\n- 'ℹ skipped 0\\n' +\n- 'ℹ todo 0\\n' +\n- 'ℹ duration_ms *\\n'", "retried": true }, "deno": { @@ -167129,7 +167285,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " tests 16\\n# suites 3\\n# pass 16\\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)", + "tail": "' require the --test-only command-line option.\\n 1..1\\n ok 1 - only true in parent test\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n 1..1\\nok 9 - should print --test-only diagnostic warning - 2 levels of only\\n ---\\n duration_ms: *\\n type: 'test'\\n ...\\n1..9\\n# tests 16\\n# suites 3\\n# pass 16\\n# fail 0\\n# cancelled 0\\n# skipped 0\\n# todo 0\\n# duration_ms *\\n\",", "retried": true }, "deno": { @@ -167191,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": { @@ -167437,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": { @@ -167499,7 +167655,7 @@ "pass": false, "timeout": false, "exit": 1, - "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. [127.00ms]", + "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": { @@ -167743,7 +167899,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-emit-restarted.mjs:19:16\n-------------------------------\n\n\n 0 pass\n 1 fail\n 1 error\nRan 1 test across 1 file. [52.00ms]", + "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": { @@ -167803,7 +167959,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "scovery 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. [30.00ms]", + "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": { @@ -168396,7 +168552,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "eneratedMessage: 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 [0.07ms]\n(pass) validMappingEmptyGroups", + "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": { @@ -168456,7 +168612,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "corpus>/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96685]: --- stdout ---\n\n[process 96685]: 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": { @@ -168485,7 +168641,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "orpus>/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96740]: --- stdout ---\n\n[process 96740]: 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": { @@ -168514,7 +168670,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96747]: --- stdout ---\n\n[process 96747]: 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": { @@ -168543,7 +168699,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "t/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96787]: --- stdout ---\n\n[process 96787]: 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": { @@ -168572,7 +168728,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96792]: --- stdout ---\n\n[process 96792]: 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": { @@ -168601,7 +168757,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96833]: --- stdout ---\n\n[process 96833]: 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": { @@ -168630,7 +168786,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96832]: --- stdout ---\n\n[process 96832]: 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": { @@ -168659,7 +168815,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "orpus>/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96841]: --- stdout ---\n\n[process 96841]: 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": { @@ -168717,7 +168873,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96858]: --- stdout ---\n\n[process 96858]: 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": { @@ -168746,7 +168902,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "(/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96864]: --- stdout ---\n\n[process 96864]: 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": { @@ -168804,7 +168960,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "s> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96877]: --- stdout ---\n\n[process 96877]: 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": { @@ -168862,7 +169018,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ous> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96904]: --- stdout ---\n\n[process 96904]: 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": { @@ -168891,7 +169047,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": ">/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96905]: --- stdout ---\n\n[process 96905]: 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": { @@ -168920,7 +169076,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96921]: --- stdout ---\n\n[process 96921]: 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": { @@ -168949,7 +169105,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96920]: --- stdout ---\n\n[process 96920]: 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": { @@ -168978,7 +169134,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ous> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96949]: --- stdout ---\n\n[process 96949]: 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": { @@ -169036,7 +169192,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "ous> (/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96957]: --- stdout ---\n\n[process 96957]: 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": { @@ -169152,7 +169308,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "/test/fixtures/wasi-preview-1.js:51:34)\n\nBun v1.4.0 (macOS arm64)\n\n[process 96988]: --- stdout ---\n\n[process 96988]: 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": { @@ -169371,7 +169527,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 3 unexpected failures. Consider updating test/wpt/status/FileAPI/blob.cjs for these files:\nBlob-stream.any.js\nBlob-slice.any.js\nBlob-constructor.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/FileAPI/blob.cjs for these files:\nBlob-stream.any.js\nBlob-constructor.any.js\nBlob-slice.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -169497,7 +169653,7 @@ "pass": false, "timeout": false, "exit": 1, - "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:\nstreams/backpressure.any.js\nidlharness.any.js\nencodeInto.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": { @@ -169590,7 +169746,7 @@ "pass": false, "timeout": false, "exit": 1, - "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.json 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": { @@ -169650,7 +169806,7 @@ "pass": false, "timeout": false, "exit": 1, - "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\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": { @@ -169803,7 +169959,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": " `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 4 unexpected failures. Consider updating test/wpt/status/url.cjs for these files:\nurl-setters.any.js\nurlencoded-parser.any.js\nurl-origin.any.js\nIdnaTestV2.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": { @@ -169836,7 +169992,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/urlpattern.json for these files:\nurlpattern.https.any.js\nurlpattern.any.js\n at (/test/common/wpt.js:846:79)", + "tail": "unexpected failures. ` +\n846 | `Consider updating ${file} for these files:\\n${failures.join('\\n')}`);\n ^\nerror: Found 2 unexpected failures. Consider updating test/wpt/status/urlpattern.json for these files:\nurlpattern.any.js\nurlpattern.https.any.js\n at (/test/common/wpt.js:846:79)", "retried": true }, "deno": { @@ -169900,7 +170056,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "js\nesm-integration/reserved-import-names.tentative.any.js\nesm-integration/source-phase-string-constants.tentative.any.js\nesm-integration/mutable-global-sharing.tentative.any.js\nesm-integration/js-wasm-cycle.tentative.any.js\nesm-integration/source-phase.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": { @@ -169993,7 +170149,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "entative.https.any.js\nidlharness.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/rsa_oaep.https.any.js\nencrypt_decrypt/aes_ctr.https.any.js\nencrypt_decrypt/aes_gcm_256_iv.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": { @@ -170028,7 +170184,7 @@ "pass": false, "timeout": false, "exit": 1, - "tail": "binding/es-exceptions/DOMException-custom-bindings.any.js\necmascript-binding/global-object-implicit-this-value.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 3ff842354..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"); @@ -686,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. From 50bdd370d83aaba58a1f80d750b0609ded89676d Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 19:35:58 -0700 Subject: [PATCH 4/9] cross-runtime: match the retry sentence to the regenerated meta; refresh wiki lens figures The clean bun re-measure's own retry pass flipped 4 verdicts, so the README sentence reads 4 bun again, matching meta.retried. The research doc's headline lens figures move to the regenerated results (bun 70.1 on Deno's lens), with a changelog entry. --- tests/cross-runtime/README.md | 2 +- wiki/research/node-test-suite-leverage.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/cross-runtime/README.md b/tests/cross-runtime/README.md index a70dae6c7..e12f0b2e0 100644 --- a/tests/cross-runtime/README.md +++ b/tests/cross-runtime/README.md @@ -23,7 +23,7 @@ This harness runs Node's own test suite — the whole `test/` tree of a Node rel The nub binary is a release build of `main` at `e78a6701dd` plus the `NODE_OPTIONS` coverage-exclude change committed beside this results file. This table and the results table below are generated from `results.json` by [`readme-table.mjs`](./readme-table.mjs). -macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 1 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`), one full bun pass over the same v26.7.0 checkout: 99 files flipped to pass and none flipped to fail. +macOS arm64, 2026-08-22. The retry pass flipped 1 node, 1 nub, 4 bun, 2 deno and 0 node25 verdicts, which bounds the load effect. Bun's verdicts were re-measured 2026-08-30 with the `bun test` accommodation and `BUN_TEST_DRAIN_EVENT_LOOP=1` (see `buildPlainCommand` in `run.mjs`), one full bun pass over the same v26.7.0 checkout: 99 files flipped to pass and none flipped to fail. ## Reproduce it yourself 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. From 10d6f70f2de1278a347d910e7605c734218d722e Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 19:43:14 -0700 Subject: [PATCH 5/9] cross-runtime: gate the hand-copied site figures in readme-table.mjs --check The homepage COMPAT array and the blog's compatibility sentence are retyped from results.json and nothing rechecked them, so both drifted when a re-measurement moved a score. --check now compares each surface's rates and counts against scores.denoExclusions and fails on a mismatch (verified red against a deliberately broken rate). --- tests/cross-runtime/README.md | 2 +- tests/cross-runtime/readme-table.mjs | 47 +++++++++++++++++++++++++++- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/tests/cross-runtime/README.md b/tests/cross-runtime/README.md index e12f0b2e0..5d759fc38 100644 --- a/tests/cross-runtime/README.md +++ b/tests/cross-runtime/README.md @@ -117,7 +117,7 @@ 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) now compares both surfaces' rates against `scores.denoExclusions` and fails on a mismatch, so the copy step can no longer be skipped silently. ## Wording differences vs behavior differences diff --git a/tests/cross-runtime/readme-table.mjs b/tests/cross-runtime/readme-table.mjs index 4980c43d2..180c10831 100644 --- a/tests/cross-runtime/readme-table.mjs +++ b/tests/cross-runtime/readme-table.mjs @@ -85,9 +85,54 @@ for (const blk of BLOCKS) { console.log(expected + "\n"); } } +// The published figures are hand-copied into the homepage COMPAT array and the +// blog's compatibility sentence, and nothing else rechecks them — both drifted +// silently when a re-measurement moved bun's score. --check compares each +// surface's one-decimal denoExclusions rates against results.json; a missing +// file exits 2 (uncheckable), a mismatch exits 1 like table drift. +function checkHandCopies() { + const s = results.scores.denoExclusions; + const by = Object.fromEntries(s.runtimes.map((r) => [r.runtime, r])); + const rate = (rt) => (by[rt].pass / s.nodePass * 100).toFixed(1); + const surfaces = [ + { + file: path.join(HERE, "../../site/src/app/(home)/page.tsx"), + wants: [ + { re: /name: 'Nub', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, rt: "nub" }, + { re: /name: 'Deno [\d.]+', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, rt: "deno" }, + { re: /name: 'Bun [\d.]+', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, rt: "bun" }, + ], + }, + { + file: path.join(HERE, "../../site/content/blog/introducing-nub.mdx"), + wants: [ + { re: /clears ([\d.]+)% of what real Node passes/, rt: "nub" }, + { re: /([\d.]+)% for Deno/, rt: "deno" }, + { re: /([\d.]+)% for Bun/, rt: "bun" }, + ], + }, + ]; + 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 { re, rt } of wants) { + const m = re.exec(src); + if (!m) { console.error(`${path.basename(file)}: pattern for ${rt} not found (${re})`); bad = true; continue; } + if (m[1] !== rate(rt)) { console.error(`${path.basename(file)}: ${rt} says ${m[1]}, results.json says ${rate(rt)}`); bad = true; } + if (m[2] && (m[2] !== n(by[rt].pass) || m[3] !== n(s.nodePass))) { + console.error(`${path.basename(file)}: ${rt} tests say ${m[2]} / ${m[3]}, results.json says ${n(by[rt].pass)} / ${n(s.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"); From 8954631ff4694b8112d31a3004307383447457ac Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 19:54:27 -0700 Subject: [PATCH 6/9] cross-runtime: extend the hand-copy gate to the wiki figures and the retry sentence The two surfaces that actually drifted during review were not the two the gate covered: the wiki research doc's nine lens figures and this README's retry-flip counts. --check now validates both (each verified red against a deliberate mismatch), and the pre-push trigger also fires for pushes that touch only the checked site/wiki files. --- .githooks/pre-push | 4 +- tests/cross-runtime/README.md | 2 +- tests/cross-runtime/readme-table.mjs | 72 ++++++++++++++++++++-------- 3 files changed, 56 insertions(+), 22 deletions(-) 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 < [r.runtime, r])); - const rate = (rt) => (by[rt].pass / s.nodePass * 100).toFixed(1); + 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"); const surfaces = [ { file: path.join(HERE, "../../site/src/app/(home)/page.tsx"), wants: [ - { re: /name: 'Nub', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, rt: "nub" }, - { re: /name: 'Deno [\d.]+', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, rt: "deno" }, - { re: /name: 'Bun [\d.]+', rate: ([\d.]+), tests: '([\d,]+) \/ ([\d,]+)'/, rt: "bun" }, + { 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" }, ], }, { file: path.join(HERE, "../../site/content/blog/introducing-nub.mdx"), wants: [ - { re: /clears ([\d.]+)% of what real Node passes/, rt: "nub" }, - { re: /([\d.]+)% for Deno/, rt: "deno" }, - { re: /([\d.]+)% for Bun/, rt: "bun" }, + { 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" }, + ], + }, + { + 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", + }, ], }, ]; @@ -116,12 +138,22 @@ function checkHandCopies() { 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 { re, rt } of wants) { - const m = re.exec(src); - if (!m) { console.error(`${path.basename(file)}: pattern for ${rt} not found (${re})`); bad = true; continue; } - if (m[1] !== rate(rt)) { console.error(`${path.basename(file)}: ${rt} says ${m[1]}, results.json says ${rate(rt)}`); bad = true; } - if (m[2] && (m[2] !== n(by[rt].pass) || m[3] !== n(s.nodePass))) { - console.error(`${path.basename(file)}: ${rt} tests say ${m[2]} / ${m[3]}, results.json says ${n(by[rt].pass)} / ${n(s.nodePass)}`); + 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; } + 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; } } From c95ec26bd56e724c115b06c46bd37afe3a9b4151 Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 20:02:52 -0700 Subject: [PATCH 7/9] cross-runtime: assert the hand-written runtime version labels too The gated lines' 'Bun 1.4' / 'Deno 2.9' labels were wildcarded, so a re-measure on a newer runtime would leave them stale with the gate green. They now compare against major.minor of the measured binary in meta.binaries (red-tested against a perturbed label). --- tests/cross-runtime/readme-table.mjs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/cross-runtime/readme-table.mjs b/tests/cross-runtime/readme-table.mjs index c5f2b4d8c..ccf2a0cb8 100644 --- a/tests/cross-runtime/readme-table.mjs +++ b/tests/cross-runtime/readme-table.mjs @@ -98,6 +98,9 @@ function checkHandCopies() { 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 surfaces = [ { file: path.join(HERE, "../../site/src/app/(home)/page.tsx"), @@ -105,6 +108,8 @@ function checkHandCopies() { { 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" }, ], }, { @@ -113,6 +118,8 @@ function checkHandCopies() { { 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" }, ], }, { @@ -142,6 +149,10 @@ function checkHandCopies() { 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) { + if (m[1] !== w.value) { console.error(`${path.basename(file)}: ${name} says ${m[1]}, measured binary is ${w.value}`); bad = true; } + continue; + } const rts = w.counts ? [] : (w.rts || [w.rt]); rts.forEach((rt, i) => { const want = w.lens.rate(rt); From 07daa4ed1db775f31f79494c612e62783d364ea9 Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 20:10:55 -0700 Subject: [PATCH 8/9] cross-runtime: gate the Node corpus labels, the Node row counts and the miss-count prose The homepage's 'Node 26.7' label, its 5,046/5,046 row, the blog's corpus sentence and the homepage's 'Most of Nub's 78 misses' derive from results.json and were unasserted. All four now compare against meta.corpusNodeVersion and scores.denoExclusions (red-tested). --- tests/cross-runtime/readme-table.mjs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/cross-runtime/readme-table.mjs b/tests/cross-runtime/readme-table.mjs index ccf2a0cb8..63439e861 100644 --- a/tests/cross-runtime/readme-table.mjs +++ b/tests/cross-runtime/readme-table.mjs @@ -101,6 +101,8 @@ function checkHandCopies() { // 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"), @@ -110,6 +112,9 @@ function checkHandCopies() { { 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" }, ], }, { @@ -120,6 +125,7 @@ function checkHandCopies() { { 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" }, ], }, { @@ -149,8 +155,11 @@ function checkHandCopies() { 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) { - if (m[1] !== w.value) { console.error(`${path.basename(file)}: ${name} says ${m[1]}, measured binary is ${w.value}`); bad = true; } + if (w.value !== undefined || w.values) { + const wants = w.values || [w.value]; + wants.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]); From d0ce5220298bdd26fda6c30b478eb32e23670b08 Mon Sep 17 00:00:00 2001 From: Colin McDonnell <3084745+colinhacks@users.noreply.github.com> Date: Sun, 30 Aug 2026 20:24:43 -0700 Subject: [PATCH 9/9] cross-runtime: gate the homepage prose corpus label; restate the checklist page.tsx carries two corpus labels and only the COMPAT row's was asserted; the prose one is now checked too (red-tested). The README's gate paragraph restated to name everything checked, and the values loop unshadowed. --- tests/cross-runtime/README.md | 2 +- tests/cross-runtime/readme-table.mjs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/cross-runtime/README.md b/tests/cross-runtime/README.md index 20b2ff1ea..d5f39ed09 100644 --- a/tests/cross-runtime/README.md +++ b/tests/cross-runtime/README.md @@ -117,7 +117,7 @@ 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. `readme-table.mjs --check` (run by the pre-push hook, including for pushes that touch only those files) now compares both surfaces' rates against `scores.denoExclusions` — plus the wiki research doc's lens figures and this README's own retry-flip sentence — and fails on a mismatch, so the copy step can no longer be skipped silently. +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 diff --git a/tests/cross-runtime/readme-table.mjs b/tests/cross-runtime/readme-table.mjs index 63439e861..b4ce1a6f7 100644 --- a/tests/cross-runtime/readme-table.mjs +++ b/tests/cross-runtime/readme-table.mjs @@ -115,6 +115,7 @@ function checkHandCopies() { { 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)" }, ], }, { @@ -156,8 +157,8 @@ function checkHandCopies() { 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 wants = w.values || [w.value]; - wants.forEach((want, i) => { + 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;