mirror of
https://github.com/denoland/deno.git
synced 2025-02-02 04:38:21 -05:00
2d58da520f
Previously https://github.com/zhmushan/deno_path
Original: 1a35f9daf5
29 lines
823 B
TypeScript
Executable file
29 lines
823 B
TypeScript
Executable file
#!/usr/bin/env deno --allow-run --allow-net
|
|
import { run, exit } 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", "."]
|
|
});
|
|
// path test
|
|
import "path/basename_test.ts";
|
|
import "path/dirname_test.ts";
|
|
import "path/extname_test.ts";
|
|
import "path/isabsolute_test.ts";
|
|
import "path/join_test.ts";
|
|
import "path/parse_format_test.ts";
|
|
import "path/relative_test.ts";
|
|
import "path/resolve_test.ts";
|
|
import "path/zero_length_strings_test.ts";
|
|
|
|
// I am also too lazy to do this properly LOL
|
|
runTests(new Promise(res => setTimeout(res, 5000)));
|
|
(async () => {
|
|
await completePromise;
|
|
fileServer.close();
|
|
})();
|