Make toEqual matcher report the difference between objects

- Mismatches deep within object/array structures are pinpointed with a JsonPath-like syntax.
This commit is contained in:
Ben Christel
2016-07-18 15:17:00 -07:00
committed by Ben Christel
parent 5a76e59d5b
commit d5e6bf47ed
17 changed files with 2251 additions and 1156 deletions

View File

@@ -0,0 +1,10 @@
getJasmineRequireObj().NullDiffBuilder = function(j$) {
return function() {
return {
withPath: function(_, block) {
block();
},
record: function() {}
};
};
};