summaryrefslogtreecommitdiff
path: root/test.ts
diff options
context:
space:
mode:
authorchiefbiiko <noah.anabiik.schwarz@gmail.com>2019-01-01 23:45:41 +0000
committerRyan Dahl <ry@tinyclouds.org>2019-01-01 18:45:41 -0500
commit2db683e47e09fe574f8c35d0fc64779b97e491ae (patch)
treec42b2a861f04b96cfcf402576591899f16a220f6 /test.ts
parent02c3c97dddaabe9764a92c9b9baf84c631b88180 (diff)
Add mkdirp (denoland/deno_std#59)
Original: https://github.com/denoland/deno_std/commit/7a3c70e74b46885eaee4dea6529daf1f2c2f84a0
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 () => {