From 08afbf102bdcc1b526895c059de61722bd9cedbc Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Feb 2026 06:07:47 +0000 Subject: [PATCH] style: use test.concurrent for independent subprocess tests https://claude.ai/code/session_01PUC6nQfgT5eHfaiKaCHajL --- test/regression/issue/04459.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/regression/issue/04459.test.ts b/test/regression/issue/04459.test.ts index 408307cb72..2612bcafbc 100644 --- a/test/regression/issue/04459.test.ts +++ b/test/regression/issue/04459.test.ts @@ -1,7 +1,7 @@ import { expect, test } from "bun:test"; import { bunEnv, bunExe } from "harness"; -test("http.Server.getConnections returns connection count", async () => { +test.concurrent("http.Server.getConnections returns connection count", async () => { await using proc = Bun.spawn({ cmd: [ bunExe(), @@ -42,7 +42,7 @@ server.listen(0, () => { expect(exitCode).toBe(0); }); -test("http.Server.connections property is available", async () => { +test.concurrent("http.Server.connections property is available", async () => { await using proc = Bun.spawn({ cmd: [ bunExe(), @@ -81,7 +81,7 @@ server.listen(0, () => { expect(exitCode).toBe(0); }); -test("http.Server.getConnections returns 0 when server is not listening", async () => { +test.concurrent("http.Server.getConnections returns 0 when server is not listening", async () => { await using proc = Bun.spawn({ cmd: [ bunExe(),