chai-spies-augment
Version:
Additions to chai-spies, adding utilities to inspect args and check if a spy was called with a partial object
20 lines (13 loc) • 584 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function () {
(0, _calledWithObjectContaining2.default)();
(0, _spyArgs2.default)();
};
var _calledWithObjectContaining = require('./called-with-object-containing/called-with-object-containing');
var _calledWithObjectContaining2 = _interopRequireDefault(_calledWithObjectContaining);
var _spyArgs = require('./spy-args/spy-args');
var _spyArgs2 = _interopRequireDefault(_spyArgs);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }