summaryrefslogtreecommitdiff
path: root/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test.ts')
-rwxr-xr-xtest.ts17
1 files changed, 3 insertions, 14 deletions
diff --git a/test.ts b/test.ts
index 994148178..a128ce0a1 100755
--- a/test.ts
+++ b/test.ts
@@ -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();
-})();