2018-12-18 18:25:49 -05:00
|
|
|
#!/usr/bin/env deno --allow-run --allow-net
|
2018-12-11 17:56:32 -05:00
|
|
|
import { run } from "deno";
|
|
|
|
|
2018-12-18 18:25:49 -05:00
|
|
|
import "net/bufio_test.ts";
|
|
|
|
import "net/http_test.ts";
|
|
|
|
import "net/textproto_test.ts";
|
|
|
|
import { runTests, completePromise } from "net/file_server_test.ts";
|
2018-12-11 17:56:32 -05:00
|
|
|
|
|
|
|
// file server test
|
|
|
|
const fileServer = run({
|
2018-12-18 18:25:49 -05:00
|
|
|
args: ["deno", "--allow-net", "net/file_server.ts", "."]
|
2018-12-11 17:56:32 -05:00
|
|
|
});
|
|
|
|
// I am also too lazy to do this properly LOL
|
2018-12-17 22:57:45 -05:00
|
|
|
runTests(new Promise(res => setTimeout(res, 5000)));
|
2018-12-11 17:56:32 -05:00
|
|
|
(async () => {
|
|
|
|
await completePromise;
|
|
|
|
fileServer.close();
|
|
|
|
})();
|