mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
20 lines
485 B
TypeScript
20 lines
485 B
TypeScript
import { run } from "deno";
|
|
|
|
import "./buffer_test.ts";
|
|
import "./bufio_test.ts";
|
|
import "./textproto_test.ts";
|
|
import { runTests, completePromise } from "./file_server_test.ts";
|
|
|
|
// file server test
|
|
const fileServer = run({
|
|
args: ["deno", "--allow-net", "file_server.ts", "."]
|
|
});
|
|
// I am also too lazy to do this properly LOL
|
|
runTests(new Promise(res => setTimeout(res, 1000)));
|
|
(async () => {
|
|
await completePromise;
|
|
fileServer.close();
|
|
})();
|
|
|
|
// TODO import "./http_test.ts";
|