summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-11-07 10:18:48 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-11-07 10:18:48 -0500
commitabe47d10c97f5cff671d3565a5a985c2ef203d4d (patch)
tree92723c284325b2b6014f02d4ea932e5225d81400
parent0d048b8704c0709506d3d14a26d540a4b8eb470e (diff)
Fix test
Original: https://github.com/denoland/deno_std/commit/52ff748cfbc5f23b267dc5901c96508aee02d199
-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");
+});