diff options
Diffstat (limited to 'std/http/racing_server_test.ts')
-rw-r--r-- | std/http/racing_server_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/racing_server_test.ts b/std/http/racing_server_test.ts index b8336abcd..5e253c6cd 100644 --- a/std/http/racing_server_test.ts +++ b/std/http/racing_server_test.ts @@ -9,7 +9,7 @@ const moduleDir = dirname(fromFileUrl(import.meta.url)); let server: Deno.Process<Deno.RunOptions & { stdout: "piped" }>; async function startServer(): Promise<void> { server = Deno.run({ - cmd: [Deno.execPath(), "run", "-A", "racing_server.ts"], + cmd: [Deno.execPath(), "run", "--quiet", "-A", "racing_server.ts"], cwd: moduleDir, stdout: "piped", }); |