Skip to content

Commit

Permalink
chore(testrunner): newline for toEqual matcher (#3959)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Feb 9, 2019
1 parent 0bb657c commit 5696096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/testrunner/Matchers.js
Expand Up @@ -99,7 +99,7 @@ const DefaultMatchers = {
toEqual: function(value, other, message) {
const valueJson = stringify(value);
const otherJson = stringify(other);
message = message || `${valueJson}${otherJson}`;
message = message || `\n${valueJson}${otherJson}`;
return { pass: valueJson === otherJson, message };
},

Expand Down

0 comments on commit 5696096

Please sign in to comment.