From 02bd7e956ec691076f597085bdfcc82afa8292cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 4 May 2019 17:33:50 +0200 Subject: bump CI to v0.4.0 (denoland/deno_std#378) Original: https://github.com/denoland/deno_std/commit/2ad643d29690f6390c250f55e993727ae8e1ba54 --- http/file_server_test.ts | 1 + http/racing_server_test.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'http') diff --git a/http/file_server_test.ts b/http/file_server_test.ts index b976c0dc0..38071d3e4 100644 --- a/http/file_server_test.ts +++ b/http/file_server_test.ts @@ -11,6 +11,7 @@ async function startFileServer(): Promise { fileServer = run({ args: [ "deno", + "run", "--allow-read", "--allow-net", "http/file_server.ts", diff --git a/http/racing_server_test.ts b/http/racing_server_test.ts index 0c1a5c65f..cdcdca1a7 100644 --- a/http/racing_server_test.ts +++ b/http/racing_server_test.ts @@ -8,7 +8,7 @@ import { TextProtoReader } from "../textproto/mod.ts"; let server; async function startServer(): Promise { server = run({ - args: ["deno", "-A", "http/racing_server.ts"], + args: ["deno", "run", "-A", "http/racing_server.ts"], stdout: "piped" }); // Once fileServer is ready it will write to its stdout. -- cgit v1.2.3