summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/test.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 /tools/ts_library_builder/test.ts
parenta8d326b4311757b2b69bc251d460f4242d19a29f (diff)
Move testing module to deno_std (#1451)
Upgrades deno_std submodule.
Diffstat (limited to 'tools/ts_library_builder/test.ts')
-rw-r--r--tools/ts_library_builder/test.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/ts_library_builder/test.ts b/tools/ts_library_builder/test.ts
index 71b1d19a0..b5883433a 100644
--- a/tools/ts_library_builder/test.ts
+++ b/tools/ts_library_builder/test.ts
@@ -3,7 +3,11 @@
// ./node_modules/.bin/ts-node --project tools/ts_library_builder/tsconfig.json tools/ts_library_builder/test.ts
import { Project, ts } from "ts-simple-ast";
-import { assert, assertEqual, test } from "../../js/testing/testing";
+import {
+ assert,
+ assertEqual,
+ test
+} from "../../js/deps/https/deno.land/x/std/testing/mod";
import { flatten, mergeGlobal } from "./build_library";
import { loadDtsFiles } from "./ast_util";