diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-12-13 05:12:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-13 05:12:19 +0100 |
commit | a2ba573e77b63d2bcb5cba19fae09cebda2fc685 (patch) | |
tree | a39947b0a551c5017568b7628ca260b5c99c6213 /cli/tests/unit/flock_test.ts | |
parent | 8972ebc9cc33ef1df21c899c35006ea712f7f91f (diff) |
fix: default to `"inherit"` for `Deno.Command#spawn()`'s `stdout` & `stderr` (#17025)
Diffstat (limited to 'cli/tests/unit/flock_test.ts')
-rw-r--r-- | cli/tests/unit/flock_test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/unit/flock_test.ts b/cli/tests/unit/flock_test.ts index be463bf12..20453a57a 100644 --- a/cli/tests/unit/flock_test.ts +++ b/cli/tests/unit/flock_test.ts @@ -151,6 +151,8 @@ function runFlockTestProcess(opts: { exclusive: boolean; sync: boolean }) { const process = new Deno.Command(Deno.execPath(), { args: ["eval", "--unstable", scriptText], stdin: "piped", + stdout: "piped", + stderr: "null", }).spawn(); const waitSignal = async () => { |