diff options
| author | Andy Hayden <andyhayden1@gmail.com> | 2019-01-17 10:08:59 -0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-17 13:08:59 -0500 |
| commit | b2e54bad61b37f3a186dd72237c694ada77ab94f (patch) | |
| tree | bc30bea78e49fe9c854be93e0509aabc76f77392 /test.ts | |
| parent | 811128864c4db40409c5c5538b56466e4f4e704c (diff) | |
Remove race-condition in file_server tests (denoland/deno_std#125)
Original: https://github.com/denoland/deno_std/commit/e28c9a407951f10d952993ff6a7b248ca11243e1
Diffstat (limited to 'test.ts')
| -rwxr-xr-x | test.ts | 17 |
1 files changed, 3 insertions, 14 deletions
@@ -1,6 +1,4 @@ #!/usr/bin/env deno --allow-run --allow-net --allow-write -import { run } from "deno"; - import "colors/test.ts"; import "datetime/test.ts"; import "examples/test.ts"; @@ -16,21 +14,12 @@ import "fs/path/relative_test.ts"; import "fs/path/resolve_test.ts"; import "fs/path/zero_length_strings_test.ts"; import "io/bufio_test.ts"; +import "io/ioutil_test.ts"; import "http/http_test.ts"; +import "http/file_server_test.ts"; import "log/test.ts"; import "media_types/test.ts"; import "testing/test.ts"; import "textproto/test.ts"; +import "ws/sha1_test.ts"; import "ws/test.ts"; - -import { runTests, completePromise } from "http/file_server_test.ts"; - -const fileServer = run({ - args: ["deno", "--allow-net", "http/file_server.ts", ".", "--cors"] -}); - -runTests(new Promise(res => setTimeout(res, 5000))); -(async () => { - await completePromise; - fileServer.close(); -})(); |
