summaryrefslogtreecommitdiff
path: root/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test.ts')
-rwxr-xr-xtest.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/test.ts b/test.ts
index 95003e0ad..54413ecd9 100755
--- a/test.ts
+++ b/test.ts
@@ -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 () => {