feat: Add pretty assert (denoland/deno_std#187)

Original: ddafcc6572
This commit is contained in:
bokuweb 2019-02-16 01:11:55 +09:00 committed by Ryan Dahl
parent 57f4e6a864
commit 0eed9b3029
7 changed files with 1800 additions and 0 deletions

View file

@ -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"));