From c8fc679329f45f50c061a67400e572f356b7890f Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Sun, 26 Jul 2020 12:52:08 -0700 Subject: test(std): remove unstable from multiple tests (#6882) --- std/http/racing_server_test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'std/http') 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; async function startServer(): Promise { 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. -- cgit v1.2.3