summaryrefslogtreecommitdiff
path: root/js/testing/util_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/testing/util_test.ts')
-rw-r--r--js/testing/util_test.ts34
1 files changed, 33 insertions, 1 deletions
diff --git a/js/testing/util_test.ts b/js/testing/util_test.ts
index 9ac3dfd71..25f0b2c45 100644
--- a/js/testing/util_test.ts
+++ b/js/testing/util_test.ts
@@ -17,7 +17,7 @@ import { test } from "./testing.ts";
import { assert } from "./util.ts";
import * as util from "./util.ts";
-test(async function util_equal() {
+test(function util_equal() {
assert(util.equal("world", "world"));
assert(!util.equal("hello", "world"));
assert(util.equal(5, 5));
@@ -38,3 +38,35 @@ test(async function util_equal() {
)
);
});
+
+test(function util_assertEqual() {
+ const a = Object.create(null);
+ a.b = "foo";
+ util.assertEqual(a, a);
+});
+
+test(function util_assertEqualActualUncoercable() {
+ let didThrow = false;
+ const a = Object.create(null);
+ try {
+ util.assertEqual(a, "bar");
+ } catch (e) {
+ didThrow = true;
+ console.log(e.message);
+ assert(e.message === "actual: [Cannot display] expected: bar");
+ }
+ assert(didThrow);
+});
+
+test(function util_assertEqualExpectedUncoercable() {
+ let didThrow = false;
+ const a = Object.create(null);
+ try {
+ util.assertEqual("bar", a);
+ } catch (e) {
+ didThrow = true;
+ console.log(e.message);
+ assert(e.message === "actual: bar expected: [Cannot display]");
+ }
+ assert(didThrow);
+});