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"); +});