UNPKG

console-fail-test

Version:

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

1 lines • 1.74 kB
{"version":3,"sources":["../../src/environments/lab.ts"],"sourcesContent":["import { TestFrameworkSelector } from \"./testEnvironmentTypes.js\";\n\ndeclare interface Lab {\n\t_current: {\n\t\ttests: unknown[];\n\t};\n\tafterEach(callback: Function): void;\n\tbeforeEach(callback: Function): void;\n\tsetOnly: Function;\n}\n\nconst isLab = (testFramework: unknown): testFramework is Lab => {\n\treturn (\n\t\ttypeof testFramework !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Lab>).afterEach !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Lab>).beforeEach !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Lab>).setOnly !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<Lab>)._current === \"object\" &&\n\t\ttypeof (testFramework as Lab)._current.tests === \"object\"\n\t);\n};\n\nexport const selectLabEnvironment: TestFrameworkSelector = ({\n\ttestFramework,\n}) => {\n\tif (!isLab(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\t\treportComplaint({ error }) {\n\t\t\t\t\t\tthrow error;\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t});\n\t\t},\n\t\tbeforeEach: testFramework.beforeEach,\n\t};\n};\n"],"mappings":"AAWA,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,aAAa,YACpD,OAAQ,cAAsB,SAAS,UAAU;AAEnD;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,UACR,gBAAgB,EAAE,MAAM,GAAG;AAC1B,kBAAM;AAAA,UACP;AAAA,QACD,CAAC;AAAA,MACF,CAAC;AAAA,IACF;AAAA,IACA,YAAY,cAAc;AAAA,EAC3B;AACD;","names":[]}