From 2db683e47e09fe574f8c35d0fc64779b97e491ae Mon Sep 17 00:00:00 2001 From: chiefbiiko Date: Tue, 1 Jan 2019 23:45:41 +0000 Subject: Add mkdirp (denoland/deno_std#59) Original: https://github.com/denoland/deno_std/commit/7a3c70e74b46885eaee4dea6529daf1f2c2f84a0 --- test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test.ts') 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 () => { -- cgit v1.2.3