mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user