diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-10-12 08:23:13 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-11 20:29:43 -0400 |
commit | ec402c6932128d215f78c77661d84472a89b72b1 (patch) | |
tree | 899cfd7895c900300ad6c9199f277377c5d093fb /js/testing/testing.ts | |
parent | fda7aaa10e173bfa8ef864a74a274af69fc01cca (diff) |
Replace globals.d.ts with lib.deno_runtime.d.ts
Diffstat (limited to 'js/testing/testing.ts')
-rw-r--r-- | js/testing/testing.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/testing/testing.ts b/js/testing/testing.ts index ff91ddebc..437cb0f38 100644 --- a/js/testing/testing.ts +++ b/js/testing/testing.ts @@ -13,7 +13,7 @@ limitations under the License. */ -export { assert, assertEqual, equal } from "./util.ts"; +export { assert, assertEqual, equal } from "./util"; export type TestFunction = () => void | Promise<void>; |