UNPKG

console-fail-test

Version:

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

1 lines • 1.81 kB
{"version":3,"sources":["../../src/environments/ava.ts"],"sourcesContent":["import { TestFrameworkSelector } from \"./testEnvironmentTypes.js\";\n\ndeclare interface Ava {\n\tafterEach(callback: Function): void;\n\tbeforeEach(callback: Function): void;\n\tcb: Function;\n\tfailing: Function;\n\tmeta: {\n\t\tfile: string;\n\t};\n\tserial: {\n\t\tcb: Function;\n\t} & Function;\n}\n\nconst isAva = (testFramework: unknown): testFramework is Ava => {\n\treturn (\n\t\ttypeof testFramework !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Ava>).afterEach !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Ava>).beforeEach !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Ava>).failing !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Ava>).meta === \"object\" &&\n\t\ttypeof (testFramework as Ava).meta.file === \"string\" &&\n\t\ttypeof (testFramework as Partial<Ava>).serial !== \"undefined\" &&\n\t\ttypeof (testFramework as Ava).serial.cb !== \"undefined\"\n\t);\n};\n\nexport const selectAvaEnvironment: TestFrameworkSelector = ({\n\ttestFramework,\n}) => {\n\tif (!isAva(testFramework)) {\n\t\treturn undefined;\n\t}\n\n\treturn {\n\t\tafterEach: (callback) => {\n\t\t\ttestFramework.afterEach(() => {\n\t\t\t\tcallback();\n\t\t\t});\n\t\t},\n\t\tbeforeEach: testFramework.beforeEach,\n\t};\n};\n"],"mappings":"AAeA,MAAM,QAAQ,CAAC,kBAAiD;AAC/D,SACC,OAAO,kBAAkB,eACzB,OAAQ,cAA+B,cAAc,eACrD,OAAQ,cAA+B,eAAe,eACtD,OAAQ,cAA+B,YAAY,eACnD,OAAQ,cAA+B,SAAS,YAChD,OAAQ,cAAsB,KAAK,SAAS,YAC5C,OAAQ,cAA+B,WAAW,eAClD,OAAQ,cAAsB,OAAO,OAAO;AAE9C;AAEO,MAAM,uBAA8C,CAAC;AAAA,EAC3D;AACD,MAAM;AACL,MAAI,CAAC,MAAM,aAAa,GAAG;AAC1B,WAAO;AAAA,EACR;AAEA,SAAO;AAAA,IACN,WAAW,CAAC,aAAa;AACxB,oBAAc,UAAU,MAAM;AAC7B,iBAAS;AAAA,MACV,CAAC;AAAA,IACF;AAAA,IACA,YAAY,cAAc;AAAA,EAC3B;AACD;","names":[]}