console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
22 lines • 762 B
JavaScript
const isAva = (testFramework) => {
return typeof testFramework !== "undefined" && typeof testFramework.afterEach !== "undefined" && typeof testFramework.beforeEach !== "undefined" && typeof testFramework.failing !== "undefined" && typeof testFramework.meta === "object" && typeof testFramework.meta.file === "string" && typeof testFramework.serial !== "undefined" && typeof testFramework.serial.cb !== "undefined";
};
const selectAvaEnvironment = ({
testFramework
}) => {
if (!isAva(testFramework)) {
return void 0;
}
return {
afterEach: (callback) => {
testFramework.afterEach(() => {
callback();
});
},
beforeEach: testFramework.beforeEach
};
};
export {
selectAvaEnvironment
};
//# sourceMappingURL=ava.js.map