UNPKG

console-fail-test

Version:

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

49 lines • 1.8 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 vitest_exports = {}; __export(vitest_exports, { selectVitestSpyFactory: () => selectVitestSpyFactory }); module.exports = __toCommonJS(vitest_exports); const isVitestModule = (spyLibrary) => { return typeof spyLibrary === "object" && !!spyLibrary.vi && typeof spyLibrary.vi.spyOn === "function"; }; const createVitestSpyFactory = (spyLibrary) => { return (container, methodName) => { const spy = spyLibrary.vi.spyOn(container, methodName); return { getCalls: () => spy.mock.calls, restore: spy.mockRestore }; }; }; const selectVitestSpyFactory = ({ spyLibrary }) => { if (isVitestModule(spyLibrary)) { return createVitestSpyFactory(spyLibrary); } if (typeof __vitest_index__ !== "undefined" && isVitestModule(__vitest_index__)) { return createVitestSpyFactory(__vitest_index__); } return void 0; }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { selectVitestSpyFactory }); //# sourceMappingURL=vitest.cjs.map