summaryrefslogtreecommitdiff
path: root/js/test_util.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-01-03 14:55:22 -0500
committerGitHub <noreply@github.com>2019-01-03 14:55:22 -0500
commit4f62a56f9071b0541b6be9b8e9c40fdcc2a3da22 (patch)
treec19cfeea353736e37b1d844dafbc1f1c256755bd /js/test_util.ts
parenta8d326b4311757b2b69bc251d460f4242d19a29f (diff)
Move testing module to deno_std (#1451)
Upgrades deno_std submodule.
Diffstat (limited to 'js/test_util.ts')
-rw-r--r--js/test_util.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/js/test_util.ts b/js/test_util.ts
index 93fc67491..d0b55e5ff 100644
--- a/js/test_util.ts
+++ b/js/test_util.ts
@@ -8,8 +8,11 @@
// See tools/unit_tests.py for more details.
import * as deno from "deno";
-import * as testing from "./testing/testing.ts";
-export { assert, assertEqual } from "./testing/testing.ts";
+import * as testing from "./deps/https/deno.land/x/std/testing/mod.ts";
+export {
+ assert,
+ assertEqual
+} from "./deps/https/deno.land/x/std/testing/mod.ts";
// testing.setFilter must be run before any tests are defined.
testing.setFilter(deno.args[1]);