UNPKG

console-fail-test

Version:

Gently fails test runs if the console was used during them. 📢

65 lines • 2.42 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var nodeTap_exports = {}; __export(nodeTap_exports, { selectNodeTapEnvironment: () => selectNodeTapEnvironment }); module.exports = __toCommonJS(nodeTap_exports); var import_complaining = require("../complaining/index.js"); const isNodeTap = (testFramework) => { return typeof testFramework !== "undefined" && typeof testFramework.afterEach === "function" && typeof testFramework.beforeEach === "function" && typeof testFramework.fail === "function" && typeof testFramework.jobs === "number" && typeof testFramework.pool === "object" && testFramework.name === "TAP"; }; const selectNodeTapEnvironment = ({ testFramework }) => { if (!isNodeTap(testFramework)) { return void 0; } return { afterEach: (callback) => { testFramework.afterEach((onFinishAfterEach) => { callback({ reportComplaint({ methodComplaints }) { for (const { methodCalls, methodName } of methodComplaints) { for (const methodCall of methodCalls) { testFramework.fail( `console.${methodName} was called with: ${(0, import_complaining.formatComplaintCall)( methodCall )}` ); } } } }); onFinishAfterEach(); }); }, beforeEach: (callback) => { testFramework.beforeEach((onFinishBeforeEach) => { callback(); onFinishBeforeEach(); }); } }; }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { selectNodeTapEnvironment }); //# sourceMappingURL=nodeTap.cjs.map