summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--http_test.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/http_test.ts b/http_test.ts
index 32c868ad5..6fbac9a4a 100644
--- a/http_test.ts
+++ b/http_test.ts
@@ -1,4 +1,6 @@
-import { listen } from "./server.ts";
+//import { listen } from "./server.ts";
+import { test } from "http://deno.land/x/testing/testing.ts";
-const s = listen("0.0.0.0:4500");
-s.serve();
+test(function basic() {
+ console.log("ok");
+});