UNPKG

console-fail-test

Version:

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

1 lines • 2.8 kB
{"version":3,"sources":["../../src/environments/nodeTap.ts"],"sourcesContent":["import { formatComplaintCall } from \"../complaining/index.js\";\nimport { TestFrameworkSelector } from \"./testEnvironmentTypes.js\";\n\ndeclare interface NodeTap {\n\tafterEach(callback: (onFinishAfterEach: () => void) => void): void;\n\tbeforeEach(callback: (onFinishBeforeEach: () => void) => void): void;\n\tfail(message: string): void;\n\tjobs: number;\n\tname: \"TAP\";\n\tpool: {};\n}\n\nconst isNodeTap = (testFramework: unknown): testFramework is NodeTap => {\n\treturn (\n\t\ttypeof testFramework !== \"undefined\" &&\n\t\ttypeof (testFramework as Partial<NodeTap>).afterEach === \"function\" &&\n\t\ttypeof (testFramework as Partial<NodeTap>).beforeEach === \"function\" &&\n\t\ttypeof (testFramework as Partial<NodeTap>).fail === \"function\" &&\n\t\ttypeof (testFramework as Partial<NodeTap>).jobs === \"number\" &&\n\t\ttypeof (testFramework as Partial<NodeTap>).pool === \"object\" &&\n\t\t(testFramework as Partial<NodeTap>).name === \"TAP\"\n\t);\n};\n\nexport const selectNodeTapEnvironment: TestFrameworkSelector = ({\n\ttestFramework,\n}) => {\n\tif (!isNodeTap(testFramework)) {\n\t\treturn undefined;\n\t}\n\n\treturn {\n\t\tafterEach: (callback) => {\n\t\t\ttestFramework.afterEach((onFinishAfterEach) => {\n\t\t\t\tcallback({\n\t\t\t\t\treportComplaint({ methodComplaints }) {\n\t\t\t\t\t\tfor (const { methodCalls, methodName } of methodComplaints) {\n\t\t\t\t\t\t\tfor (const methodCall of methodCalls) {\n\t\t\t\t\t\t\t\ttestFramework.fail(\n\t\t\t\t\t\t\t\t\t`console.${methodName} was called with: ${formatComplaintCall(\n\t\t\t\t\t\t\t\t\t\tmethodCall,\n\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t\tonFinishAfterEach();\n\t\t\t});\n\t\t},\n\t\tbeforeEach: (callback) => {\n\t\t\ttestFramework.beforeEach((onFinishBeforeEach) => {\n\t\t\t\tcallback();\n\t\t\t\tonFinishBeforeEach();\n\t\t\t});\n\t\t},\n\t};\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,yBAAoC;AAYpC,MAAM,YAAY,CAAC,kBAAqD;AACvE,SACC,OAAO,kBAAkB,eACzB,OAAQ,cAAmC,cAAc,cACzD,OAAQ,cAAmC,eAAe,cAC1D,OAAQ,cAAmC,SAAS,cACpD,OAAQ,cAAmC,SAAS,YACpD,OAAQ,cAAmC,SAAS,YACnD,cAAmC,SAAS;AAE/C;AAEO,MAAM,2BAAkD,CAAC;AAAA,EAC/D;AACD,MAAM;AACL,MAAI,CAAC,UAAU,aAAa,GAAG;AAC9B,WAAO;AAAA,EACR;AAEA,SAAO;AAAA,IACN,WAAW,CAAC,aAAa;AACxB,oBAAc,UAAU,CAAC,sBAAsB;AAC9C,iBAAS;AAAA,UACR,gBAAgB,EAAE,iBAAiB,GAAG;AACrC,uBAAW,EAAE,aAAa,WAAW,KAAK,kBAAkB;AAC3D,yBAAW,cAAc,aAAa;AACrC,8BAAc;AAAA,kBACb,WAAW,UAAU,yBAAqB;AAAA,oBACzC;AAAA,kBACD,CAAC;AAAA,gBACF;AAAA,cACD;AAAA,YACD;AAAA,UACD;AAAA,QACD,CAAC;AACD,0BAAkB;AAAA,MACnB,CAAC;AAAA,IACF;AAAA,IACA,YAAY,CAAC,aAAa;AACzB,oBAAc,WAAW,CAAC,uBAAuB;AAChD,iBAAS;AACT,2BAAmB;AAAA,MACpB,CAAC;AAAA,IACF;AAAA,EACD;AACD;","names":[]}