diff options
Diffstat (limited to 'std/http/racing_server_test.ts')
-rw-r--r-- | std/http/racing_server_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/http/racing_server_test.ts b/std/http/racing_server_test.ts index 90961f7f8..845e5a490 100644 --- a/std/http/racing_server_test.ts +++ b/std/http/racing_server_test.ts @@ -6,7 +6,8 @@ const { connect, run, test } = Deno; let server: Deno.Process; async function startServer(): Promise<void> { server = run({ - cmd: [Deno.execPath(), "run", "-A", "http/racing_server.ts"], + // TODO(lucacasonato): remove unstable when stabilized + cmd: [Deno.execPath(), "run", "--unstable", "-A", "http/racing_server.ts"], stdout: "piped", }); // Once racing server is ready it will write to its stdout. |