summaryrefslogtreecommitdiff
path: root/test.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-12-11 17:56:32 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-12-11 17:56:32 -0500
commitb94530332910c0b85553dc91fa1912bce308df3c (patch)
tree86034754d12b04aa8ee5afe541c4b98b78ca5ed0 /test.ts
parenta691d9257b89cc210de6371138508c76aa288aba (diff)
Serve directory for file server & Fix bufio flush bug (denoland/deno_std#15)
Original: https://github.com/denoland/deno_std/commit/b78f4e9fbd477b026f1a309c64f4f8f75cd4d5d6
Diffstat (limited to 'test.ts')
-rw-r--r--test.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/test.ts b/test.ts
index 2ee9a820b..44a692015 100644
--- a/test.ts
+++ b/test.ts
@@ -1,4 +1,19 @@
+import { run } from "deno";
+
import "./buffer_test.ts";
import "./bufio_test.ts";
import "./textproto_test.ts";
+import { runTests, completePromise } from "./file_server_test.ts";
+
+// file server test
+const fileServer = run({
+ args: ["deno", "--allow-net", "file_server.ts", "."]
+});
+// I am also too lazy to do this properly LOL
+runTests(new Promise(res => setTimeout(res, 1000)));
+(async () => {
+ await completePromise;
+ fileServer.close();
+})();
+
// TODO import "./http_test.ts";