diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-03-05 02:03:50 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-04 20:03:50 -0500 |
| commit | 39fde3a454b6bcc7daa6bca4fb7f4317550e9e58 (patch) | |
| tree | 86f639a1536466423b5ba26b60ea04d59f2a970d /testing/test.ts | |
| parent | 17663c12326dd1053f89a3bd741807f139973dae (diff) | |
Use pretty assertEqual in testing (denoland/deno_std#234)
Original: https://github.com/denoland/deno_std/commit/8fb9f709a67e92634b0be3024dfbc70fb445883c
Diffstat (limited to 'testing/test.ts')
| -rw-r--r-- | testing/test.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/testing/test.ts b/testing/test.ts index 7182a5783..a90ab5dc7 100644 --- a/testing/test.ts +++ b/testing/test.ts @@ -1,6 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { test, assert, assertEqual, equal, runIfMain } from "./mod.ts"; +import { assertEqual as prettyAssertEqual } from "./pretty.ts"; import "./format_test.ts"; import "./diff_test.ts"; import "./pretty_test.ts"; @@ -31,7 +32,7 @@ test(function testingAssertEqual() { const a = Object.create(null); a.b = "foo"; assert.equal(a, a); - assert(assertEqual === assert.equal); + assert(assertEqual === prettyAssertEqual); }); test(function testingAssertFail() { @@ -52,8 +53,6 @@ test(function testingAssertEqualActualUncoercable() { assert.equal(a, "bar"); } catch (e) { didThrow = true; - console.log(e.message); - assert(e.message === "actual: [Cannot display] expected: bar"); } assert(didThrow); }); @@ -65,8 +64,6 @@ test(function testingAssertEqualExpectedUncoercable() { assert.equal("bar", a); } catch (e) { didThrow = true; - console.log(e.message); - assert(e.message === "actual: bar expected: [Cannot display]"); } assert(didThrow); }); |
