console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
1 lines • 2.09 kB
Source Map (JSON)
{"version":3,"sources":["../../src/spies/sinon.ts"],"sourcesContent":["import { SpyCallArgs, SpyFactory, SpyFactoryGetter } from \"./spyTypes.js\";\n\ntype SinonSpy = {\n\tgetCalls(): SpyCallArgs[];\n\trestore(): void;\n} & Function;\n\ndeclare interface Sinon {\n\tspy(callback: Function): SinonSpy;\n}\n\ndeclare const sinon: Sinon | undefined;\n\nconst isSinonModule = (spyLibrary: unknown): spyLibrary is Sinon => {\n\treturn (\n\t\ttypeof spyLibrary === \"object\" &&\n\t\ttypeof (spyLibrary as Partial<Sinon>).spy === \"function\"\n\t);\n};\n\nconst createSinonSpyFactory = (spyLibrary: Sinon): SpyFactory => {\n\treturn (container: any, methodName: string) => {\n\t\tconst methodCalls: SpyCallArgs[] = [];\n\t\tconst originalMethod = container[methodName];\n\n\t\tconst spyMethod = spyLibrary.spy(function (\n\t\t\tthis: unknown,\n\t\t\t...args: SpyCallArgs\n\t\t) {\n\t\t\tmethodCalls.push(args);\n\t\t\treturn originalMethod.apply(this, args);\n\t\t});\n\n\t\tcontainer[methodName] = spyMethod;\n\n\t\treturn {\n\t\t\tgetCalls: () => methodCalls,\n\t\t\trestore() {\n\t\t\t\tcontainer[methodName] = originalMethod;\n\t\t\t},\n\t\t};\n\t};\n};\n\nexport const selectSinonSpyFactory: SpyFactoryGetter = ({ spyLibrary }) => {\n\tif (isSinonModule(spyLibrary)) {\n\t\treturn createSinonSpyFactory(spyLibrary);\n\t}\n\n\tif (typeof sinon !== \"undefined\" && isSinonModule(sinon)) {\n\t\treturn createSinonSpyFactory(sinon);\n\t}\n\n\treturn undefined;\n};\n"],"mappings":"AAaA,MAAM,gBAAgB,CAAC,eAA6C;AACnE,SACC,OAAO,eAAe,YACtB,OAAQ,WAA8B,QAAQ;AAEhD;AAEA,MAAM,wBAAwB,CAAC,eAAkC;AAChE,SAAO,CAAC,WAAgB,eAAuB;AAC9C,UAAM,cAA6B,CAAC;AACpC,UAAM,iBAAiB,UAAU,UAAU;AAE3C,UAAM,YAAY,WAAW,IAAI,YAE7B,MACF;AACD,kBAAY,KAAK,IAAI;AACrB,aAAO,eAAe,MAAM,MAAM,IAAI;AAAA,IACvC,CAAC;AAED,cAAU,UAAU,IAAI;AAExB,WAAO;AAAA,MACN,UAAU,MAAM;AAAA,MAChB,UAAU;AACT,kBAAU,UAAU,IAAI;AAAA,MACzB;AAAA,IACD;AAAA,EACD;AACD;AAEO,MAAM,wBAA0C,CAAC,EAAE,WAAW,MAAM;AAC1E,MAAI,cAAc,UAAU,GAAG;AAC9B,WAAO,sBAAsB,UAAU;AAAA,EACxC;AAEA,MAAI,OAAO,UAAU,eAAe,cAAc,KAAK,GAAG;AACzD,WAAO,sBAAsB,KAAK;AAAA,EACnC;AAEA,SAAO;AACR;","names":[]}