perf(test): run fd duplication redirect tests concurrently

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 <noreply@anthropic.com>
This commit is contained in:
Claude Bot
2025-12-24 04:05:44 +00:00
parent a8ff796ca5
commit d928ba12da

View File

@@ -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();