console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
24 lines • 625 B
JavaScript
const selectJasmineEnvironment = () => {
if (typeof afterEach === "undefined" || typeof beforeEach === "undefined" || typeof jasmine === "undefined" || typeof jasmine.Spec === "undefined") {
return void 0;
}
return {
afterEach: (callback) => {
afterEach(() => {
callback({
reportComplaint({ error }) {
error.stack = error.stack.substring(error.message.length);
throw error;
}
});
});
},
beforeEach: (callback) => {
beforeEach(callback);
}
};
};
export {
selectJasmineEnvironment
};
//# sourceMappingURL=jasmine.js.map