diff options
author | Yusuke Sakurai <kerokerokerop@gmail.com> | 2020-02-27 00:48:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 10:48:35 -0500 |
commit | 942e67c00b8ebdf6671fc8bb2e6c78c3ad8b3ff8 (patch) | |
tree | 9e53511a0cd6d55d4e9eb96e58f9b54e481981a5 /std/http/file_server_test.ts | |
parent | 9a8d6fbd984d2c0f9775d90af64b3e95231dd21d (diff) |
refactor(std/http): move io functions to http/io.ts (#4126)
Diffstat (limited to 'std/http/file_server_test.ts')
-rw-r--r-- | std/http/file_server_test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/std/http/file_server_test.ts b/std/http/file_server_test.ts index 7c60d5f56..a023aca3d 100644 --- a/std/http/file_server_test.ts +++ b/std/http/file_server_test.ts @@ -3,7 +3,6 @@ import { assert, assertEquals, assertStrContains } from "../testing/asserts.ts"; import { BufReader } from "../io/bufio.ts"; import { TextProtoReader } from "../textproto/mod.ts"; const { test } = Deno; - let fileServer: Deno.Process; async function startFileServer(): Promise<void> { |