diff options
| author | bokuweb <bokuweb@users.noreply.github.com> | 2019-02-16 01:11:55 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-15 11:11:55 -0500 |
| commit | 0eed9b30298e1ba83d8b21bad24ee77dff59942c (patch) | |
| tree | fce6e4f43d573faf03e336cee5ad82e97e04e539 /testing/test.ts | |
| parent | 57f4e6a86448263c9f1c75934e829e048c76f572 (diff) | |
feat: Add pretty assert (denoland/deno_std#187)
Original: https://github.com/denoland/deno_std/commit/ddafcc6572b6574eb0566d650e5f9ca9f049a8d6
Diffstat (limited to 'testing/test.ts')
| -rw-r--r-- | testing/test.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/test.ts b/testing/test.ts index a27ffb263..8c780fdf1 100644 --- a/testing/test.ts +++ b/testing/test.ts @@ -1,6 +1,9 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test, assert, assertEqual, equal } from "./mod.ts"; +import "./format_test.ts"; +import "./diff_test.ts"; +import "./pretty_test.ts"; test(function testingEqual() { assert(equal("world", "world")); |
