Skip to content

Commit 24c8219

Browse files
committed
Update napi.test.ts
1 parent 599079d commit 24c8219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/napi/napi.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,8 @@ async function checkBothFail(test: string, args: any[] | string, envArgs: Record
593593
typeof args == "string" ? args : JSON.stringify(args),
594594
],
595595
env,
596-
stdout: "pipe",
597-
stderr: "pipe",
596+
stdout: Bun.version_with_sha.includes("debug") ? "inherit" : "pipe",
597+
stderr: Bun.version_with_sha.includes("debug") ? "inherit" : "pipe",
598598
stdin: "inherit",
599599
});
600600
const exitCode = await exec.exited;

0 commit comments

Comments
 (0)