console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
1 lines • 1.86 kB
Source Map (JSON)
{"version":3,"sources":["../../src/spies/vitest.ts"],"sourcesContent":["import { SpyCallArgs, SpyFactory, SpyFactoryGetter } from \"./spyTypes.js\";\n\ndeclare interface Vitest {\n\tvi: {\n\t\tspyOn(container: unknown, methodName: string): ViSpy;\n\t};\n}\n\ndeclare interface ViSpy {\n\tmock: ViSpyMock;\n\tmockRestore(): void;\n}\n\ndeclare interface ViSpyMock {\n\tcalls: SpyCallArgs[];\n}\n\ndeclare const __vitest_index__: Vitest | undefined;\n\nconst isVitestModule = (spyLibrary: unknown): spyLibrary is Vitest => {\n\treturn (\n\t\ttypeof spyLibrary === \"object\" &&\n\t\t!!(spyLibrary as Partial<Vitest>).vi &&\n\t\ttypeof (spyLibrary as Vitest).vi.spyOn === \"function\"\n\t);\n};\n\nconst createVitestSpyFactory = (spyLibrary: Vitest): SpyFactory => {\n\treturn (container: any, methodName: string) => {\n\t\tconst spy = spyLibrary.vi.spyOn(container, methodName);\n\n\t\treturn {\n\t\t\tgetCalls: () => spy.mock.calls,\n\t\t\trestore: spy.mockRestore,\n\t\t};\n\t};\n};\n\nexport const selectVitestSpyFactory: SpyFactoryGetter = ({ spyLibrary }) => {\n\tif (isVitestModule(spyLibrary)) {\n\t\treturn createVitestSpyFactory(spyLibrary);\n\t}\n\n\tif (\n\t\ttypeof __vitest_index__ !== \"undefined\" &&\n\t\tisVitestModule(__vitest_index__)\n\t) {\n\t\treturn createVitestSpyFactory(__vitest_index__);\n\t}\n\n\treturn undefined;\n};\n"],"mappings":"AAmBA,MAAM,iBAAiB,CAAC,eAA8C;AACrE,SACC,OAAO,eAAe,YACtB,CAAC,CAAE,WAA+B,MAClC,OAAQ,WAAsB,GAAG,UAAU;AAE7C;AAEA,MAAM,yBAAyB,CAAC,eAAmC;AAClE,SAAO,CAAC,WAAgB,eAAuB;AAC9C,UAAM,MAAM,WAAW,GAAG,MAAM,WAAW,UAAU;AAErD,WAAO;AAAA,MACN,UAAU,MAAM,IAAI,KAAK;AAAA,MACzB,SAAS,IAAI;AAAA,IACd;AAAA,EACD;AACD;AAEO,MAAM,yBAA2C,CAAC,EAAE,WAAW,MAAM;AAC3E,MAAI,eAAe,UAAU,GAAG;AAC/B,WAAO,uBAAuB,UAAU;AAAA,EACzC;AAEA,MACC,OAAO,qBAAqB,eAC5B,eAAe,gBAAgB,GAC9B;AACD,WAAO,uBAAuB,gBAAgB;AAAA,EAC/C;AAEA,SAAO;AACR;","names":[]}