summaryrefslogtreecommitdiff
path: root/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test.ts')
-rwxr-xr-xtest.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/test.ts b/test.ts
index e2a76f38f..25178ecc6 100755
--- a/test.ts
+++ b/test.ts
@@ -1,4 +1,4 @@
-#!/usr/bin/env deno --allow-run --allow-net
+#!/usr/bin/env deno --allow-run --allow-net --allow-write
import { run } from "deno";
// colors tests
@@ -32,6 +32,9 @@ import "path/relative_test.ts";
import "path/resolve_test.ts";
import "path/zero_length_strings_test.ts";
+// mkdirp tests
+import "mkdirp/test.ts";
+
// I am also too lazy to do this properly LOL
runTests(new Promise(res => setTimeout(res, 5000)));
(async () => {