Files
jasmine/src/core/matchers/NullDiffBuilder.js
Ben Christel d5e6bf47ed Make toEqual matcher report the difference between objects
- Mismatches deep within object/array structures are pinpointed with a JsonPath-like syntax.
2016-11-14 22:08:34 -08:00

11 lines
197 B
JavaScript

getJasmineRequireObj().NullDiffBuilder = function(j$) {
return function() {
return {
withPath: function(_, block) {
block();
},
record: function() {}
};
};
};