diff options
Diffstat (limited to 'std/testing/mod.ts')
-rw-r--r-- | std/testing/mod.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/std/testing/mod.ts b/std/testing/mod.ts index 0d5d2702a..06a1df958 100644 --- a/std/testing/mod.ts +++ b/std/testing/mod.ts @@ -1,5 +1,12 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +export * from "./asserts.ts"; +export * from "./bench.ts"; +import diff from "./diff.ts"; +export { diff }; +export * from "./format.ts"; +export * from "./runner.ts"; + import { bgRed, white, |