diff options
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. |
