summaryrefslogtreecommitdiff
path: root/test.ts
blob: 95003e0adc994fd33d312b1ad0f51b13c1838576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env deno --allow-run --allow-net
import { run } from "deno";

import "net/bufio_test.ts";
import "net/http_test.ts";
import "net/textproto_test.ts";
import { runTests, completePromise } from "net/file_server_test.ts";

// file server test
const fileServer = run({
  args: ["deno", "--allow-net", "net/file_server.ts", "."]
});
// I am also too lazy to do this properly LOL
runTests(new Promise(res => setTimeout(res, 5000)));
(async () => {
  await completePromise;
  fileServer.close();
})();