Original: 7a3c70e74b
This commit is contained in:
chiefbiiko 2019-01-01 23:45:41 +00:00 committed by Ryan Dahl
parent 02c3c97ddd
commit 2db683e47e
8 changed files with 80 additions and 5 deletions

View file

@ -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 () => {