console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
18 lines • 516 B
JavaScript
const selectFallbackSpyFactory = () => (container, methodName) => {
const methodCalls = [];
const originalMethod = container[methodName];
const spyMethod = function(...args) {
methodCalls.push(args);
return originalMethod.apply(this, args);
};
spyMethod.getCalls = () => methodCalls;
spyMethod.restore = () => {
container[methodName] = originalMethod;
};
container[methodName] = spyMethod;
return spyMethod;
};
export {
selectFallbackSpyFactory
};
//# sourceMappingURL=fallback.js.map