1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
Original: 52ff748cfb
This commit is contained in:
Ryan Dahl 2018-11-07 10:18:48 -05:00
parent 0d048b8704
commit abe47d10c9

View file

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