diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-01 22:46:17 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-02 13:45:42 -0500 |
| commit | 6a783ea179de1321ae7fd0586967476e72984c63 (patch) | |
| tree | cafa2e3716ee3dcfa88354e4a7190cab7e436613 /mkdirp | |
| parent | 6545e5bde9454e9ae7ab61b0f4ee95db8a15e43c (diff) | |
Add testing module
Original: https://github.com/denoland/deno_std/commit/61fdae51a7cc50874b9674c40b1aef3fbf012494
Diffstat (limited to 'mkdirp')
| -rw-r--r-- | mkdirp/test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkdirp/test.ts b/mkdirp/test.ts index 9f5d7fb92..a3a4fac03 100644 --- a/mkdirp/test.ts +++ b/mkdirp/test.ts @@ -1,5 +1,5 @@ import { cwd, lstat, makeTempDirSync, removeAll, FileInfo } from "deno"; -import { test, assert } from "https://deno.land/x/testing/testing.ts"; +import { test, assert } from "../testing/mod.ts"; import { mkdirp } from "./mkdirp.ts"; let root: string = `${cwd()}/${Date.now()}`; //makeTempDirSync(); |
