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 /examples | |
| parent | 6545e5bde9454e9ae7ab61b0f4ee95db8a15e43c (diff) | |
Add testing module
Original: https://github.com/denoland/deno_std/commit/61fdae51a7cc50874b9674c40b1aef3fbf012494
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test.ts b/examples/test.ts index 4d2dea157..f42db1bba 100644 --- a/examples/test.ts +++ b/examples/test.ts @@ -1,5 +1,5 @@ import { run } from "deno"; -import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; +import { test, assertEqual } from "../testing/mod.ts"; /** Example of how to do basic tests */ test(function t1() { |
