mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
not async (unrelated to test failure)
This commit is contained in:
@@ -7,8 +7,8 @@ describe("Worker destruction", () => {
|
||||
const method = ["Bun.connect", "Bun.listen", "fetch"];
|
||||
describe.each(method)("bun when %s is used in a Worker that is terminating", method => {
|
||||
// fetch: ASAN failure
|
||||
test.skipIf(isBroken && method == "fetch")("exits cleanly", async () => {
|
||||
await expect([join(import.meta.dir, "worker_thread_check.ts"), method]).toRunAsync();
|
||||
test.skipIf(isBroken && method == "fetch")("exits cleanly", () => {
|
||||
expect([join(import.meta.dir, "worker_thread_check.ts"), method]).toRun();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user