From d928ba12da9fe944366dd0e24dfcbf3ed331a7f2 Mon Sep 17 00:00:00 2001 From: Claude Bot Date: Wed, 24 Dec 2025 04:05:44 +0000 Subject: [PATCH] perf(test): run fd duplication redirect tests concurrently MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use describe.concurrent for the fd duplication redirects test block to improve test execution performance. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- test/js/bun/shell/file-io.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/js/bun/shell/file-io.test.ts b/test/js/bun/shell/file-io.test.ts index f80eeaaedd..32626856d0 100644 --- a/test/js/bun/shell/file-io.test.ts +++ b/test/js/bun/shell/file-io.test.ts @@ -184,7 +184,7 @@ describe("IOWriter file output redirection", () => { .runAsTest("redirect then append redirect"); }); - describe("fd duplication redirects", () => { + describe.concurrent("fd duplication redirects", () => { // Test >&2 (shorthand for 1>&2 - stdout to stderr) test(">&2 redirects stdout to stderr (builtin)", async () => { const result = await $`echo test >&2`.quiet();