diff options
| author | chiefbiiko <noah.anabiik.schwarz@gmail.com> | 2019-01-01 23:45:41 +0000 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-01 18:45:41 -0500 |
| commit | 2db683e47e09fe574f8c35d0fc64779b97e491ae (patch) | |
| tree | c42b2a861f04b96cfcf402576591899f16a220f6 /test.ts | |
| parent | 02c3c97dddaabe9764a92c9b9baf84c631b88180 (diff) | |
Add mkdirp (denoland/deno_std#59)
Original: https://github.com/denoland/deno_std/commit/7a3c70e74b46885eaee4dea6529daf1f2c2f84a0
Diffstat (limited to 'test.ts')
| -rwxr-xr-x | test.ts | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 () => { |
