From 52ff748cfbc5f23b267dc5901c96508aee02d199 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 7 Nov 2018 10:18:48 -0500 Subject: [PATCH] Fix test --- http_test.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/http_test.ts b/http_test.ts index 32c868ad5f..6fbac9a4aa 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"); +});