Compare commits

...

3 Commits

Author SHA1 Message Date
autofix-ci[bot]
37ee3c8cbf [autofix.ci] apply automated fixes 2025-12-01 23:43:42 +00:00
Meghan Denny
4478231768 fix import from webui paste 2025-12-01 15:42:02 -08:00
Meghan Denny
9f91e7c549 ci: fix v8.test.ts 2025-12-01 15:41:07 -08:00

View File

@@ -1,6 +1,6 @@
import { spawn } from "bun";
import { beforeAll, describe, expect, it } from "bun:test";
import { bunEnv, bunExe, isBroken, isMusl, isWindows, nodeExe, tmpdirSync } from "harness";
import { bunEnv, bunExe, isASAN, isBroken, isMusl, isWindows, nodeExe, tmpdirSync } from "harness";
import assert from "node:assert";
import fs from "node:fs/promises";
import { basename, join } from "path";
@@ -259,9 +259,13 @@ describe.todoIf(isBroken && isMusl)("node:v8", () => {
it("can hold a lot of locals", async () => {
await checkSameOutput("test_many_v8_locals", []);
});
it("keeps GC objects alive", async () => {
await checkSameOutput("test_handle_scope_gc", []);
}, 10000);
it(
"keeps GC objects alive",
async () => {
await checkSameOutput("test_handle_scope_gc", []);
},
10000 * (isASAN ? 2 : 1),
);
});
describe("EscapableHandleScope", () => {