diff options
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 () => { |