diff options
| author | 木杉 <zhmushan@qq.com> | 2018-12-19 10:29:39 +0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-18 21:29:39 -0500 |
| commit | 2d58da520fffaeaee1bceeb33b6e3dc339ea68a3 (patch) | |
| tree | b6b8beb08e828b45ca51fb5bbc44330d45b62df5 /test.ts | |
| parent | 3c8f564ab8c3087bac8256723aed9572faba756f (diff) | |
migrate deno_path to deno_std (denoland/deno_std#26)
Previously https://github.com/zhmushan/deno_path
Original: https://github.com/denoland/deno_std/commit/1a35f9daf5aa1c10c61d62cccbe7f9ae3c615a0e
Diffstat (limited to 'test.ts')
| -rwxr-xr-x | test.ts | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/env deno --allow-run --allow-net -import { run } from "deno"; +import { run, exit } from "deno"; import "net/bufio_test.ts"; import "net/http_test.ts"; @@ -10,6 +10,17 @@ import { runTests, completePromise } from "net/file_server_test.ts"; 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 () => { |
