sinon-chai-calls-assertion
Version:
A simple sinon-chai assertion to validate many aspects of stub calls
9 lines (8 loc) • 328 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.mustGoDeep = void 0;
const is_json_comparable_1 = require("./is-json-comparable");
function mustGoDeep(a, e) {
return is_json_comparable_1.isJsonComparable(a) && is_json_comparable_1.isJsonComparable(e);
}
exports.mustGoDeep = mustGoDeep;