diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-02-09 15:41:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-09 15:41:05 -0500 |
| commit | fa3f8cf67b2e97087f044c2ee430a0b32e338d0b (patch) | |
| tree | db2b2e1862232c61c6d91c0c1bc03a6b4483fbaa /http | |
| parent | a6e164441c2f201d53863cae5fd7fdd68adf6fb7 (diff) | |
Bump CI to v0.2.11 (denoland/deno_std#183)
Original: https://github.com/denoland/deno_std/commit/1abdc2efc0fbe7a7b0978fed0c37acede58a9700
Diffstat (limited to 'http')
| -rw-r--r-- | http/file_server_test.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/http/file_server_test.ts b/http/file_server_test.ts index 1b6613c15..698857dce 100644 --- a/http/file_server_test.ts +++ b/http/file_server_test.ts @@ -8,7 +8,14 @@ import { TextProtoReader } from "../textproto/mod.ts"; let fileServer; async function startFileServer() { fileServer = run({ - args: ["deno", "--allow-net", "http/file_server.ts", ".", "--cors"], + args: [ + "deno", + "--allow-read", + "--allow-net", + "http/file_server.ts", + ".", + "--cors" + ], stdout: "piped" }); // Once fileServer is ready it will write to its stdout. |
