summaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-05-04 17:33:50 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-05-04 11:33:50 -0400
commit02bd7e956ec691076f597085bdfcc82afa8292cd (patch)
treea32ff4d7a642457d0734fa6b88f0a8b35f91eed7 /http
parent2f14376f604fec4b7a4bded11c9f0578bad39a6b (diff)
bump CI to v0.4.0 (denoland/deno_std#378)
Original: https://github.com/denoland/deno_std/commit/2ad643d29690f6390c250f55e993727ae8e1ba54
Diffstat (limited to 'http')
-rw-r--r--http/file_server_test.ts1
-rw-r--r--http/racing_server_test.ts2
2 files changed, 2 insertions, 1 deletions
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<void> {
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<void> {
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.