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