We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18af41f commit 193bb38Copy full SHA for 193bb38
assembly/__tests__/lib/index.ts
@@ -35,8 +35,8 @@ class Expectation {
35
if (this.left != (isNull(right) ? "null" : right.toString())) {
36
console.log(" " + currentDescription + "#" + currentId.toString() + "\n");
37
// @ts-ignore
38
- console.log(" (expected) -> " + (isNull(right) ? "null" : JSON.stringify(right.toString())));
39
- console.log(" (received) -> " + JSON.stringify(this.left));
+ console.log(" (expected) -> " + (isNull(right) ? "null" : right.toString()));
+ console.log(" (received) -> " + this.left);
40
unreachable();
41
}
42
0 commit comments