From 4f62a56f9071b0541b6be9b8e9c40fdcc2a3da22 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 3 Jan 2019 14:55:22 -0500 Subject: Move testing module to deno_std (#1451) Upgrades deno_std submodule. --- js/test_util.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'js/test_util.ts') 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]); -- cgit v1.2.3