diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-07-26 12:52:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 15:52:08 -0400 |
commit | c8fc679329f45f50c061a67400e572f356b7890f (patch) | |
tree | 954f3fd643f60598aa164cd60e142aef7ed80936 /std/examples/chat | |
parent | 7326e1ab490aab2220b139460165be0bfbf04f36 (diff) |
test(std): remove unstable from multiple tests (#6882)
Diffstat (limited to 'std/examples/chat')
-rw-r--r-- | std/examples/chat/server_test.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/std/examples/chat/server_test.ts b/std/examples/chat/server_test.ts index 872f4ee12..27745e659 100644 --- a/std/examples/chat/server_test.ts +++ b/std/examples/chat/server_test.ts @@ -9,13 +9,11 @@ async function startServer(): Promise< Deno.Process<Deno.RunOptions & { stdout: "piped" }> > { const server = Deno.run({ - // TODO(lucacasonato): remove unstable once possible cmd: [ Deno.execPath(), "run", "--allow-net", "--allow-read", - "--unstable", "server.ts", ], cwd: "examples/chat", |