console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
26 lines • 761 B
JavaScript
const isLab = (testFramework) => {
return typeof testFramework !== "undefined" && typeof testFramework.afterEach !== "undefined" && typeof testFramework.beforeEach !== "undefined" && typeof testFramework.setOnly !== "undefined" && typeof testFramework._current === "object" && typeof testFramework._current.tests === "object";
};
const selectLabEnvironment = ({
testFramework
}) => {
if (!isLab(testFramework)) {
return void 0;
}
return {
afterEach: (callback) => {
testFramework.afterEach(() => {
callback({
reportComplaint({ error }) {
throw error;
}
});
});
},
beforeEach: testFramework.beforeEach
};
};
export {
selectLabEnvironment
};
//# sourceMappingURL=lab.js.map