console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
40 lines • 1.82 kB
JavaScript
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 formatMethodComplaint_exports = {};
__export(formatMethodComplaint_exports, {
formatMethodComplaint: () => formatMethodComplaint
});
module.exports = __toCommonJS(formatMethodComplaint_exports);
var import_formatComplaintCall = require("./formatComplaintCall.js");
const lineThreshold = 3;
const formatMethodComplaint = ([methodName, calls]) => {
const summary = ` * ${methodName} (${calls.length} call${calls.length === 1 ? "" : "s"})`;
const lines = calls.slice(0, Math.min(calls.length, lineThreshold)).map(formatComplaintLineWithIndex);
if (calls.length > lineThreshold) {
lines.push(`...${calls.length - lineThreshold} more`);
}
return `${summary}
${lines.map((line) => ` > Call ${line}`).join("\n")}`;
};
const formatComplaintLineWithIndex = (call, i) => `${i}: ${(0, import_formatComplaintCall.formatComplaintCall)(call)}`;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
formatMethodComplaint
});
//# sourceMappingURL=formatMethodComplaint.cjs.map
;