console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
1 lines • 2.94 kB
Source Map (JSON)
{"version":3,"sources":["../../src/environments/mocha.ts"],"sourcesContent":["import { TestFrameworkSelector } from \"./testEnvironmentTypes.js\";\n\ndeclare const afterEach: (callback: (this: Mocha) => void) => void;\ndeclare const beforeEach: (callback: (this: Mocha) => void) => void;\n\ndeclare interface Mocha {\n\tcurrentTest: {\n\t\tstate: string;\n\t};\n\ttest: {\n\t\terror(error: Error): void;\n\t};\n}\n\nexport const selectMochaEnvironment: TestFrameworkSelector = () => {\n\t// Until there is some kind of global `mocha` variable that can be referenced,\n\t// we check the stringified versions of its used hook methods\n\t// See https://github.com/JoshuaKGoldberg/console-fail-test/issues/10\n\tif (\n\t\ttypeof afterEach === \"undefined\" ||\n\t\ttypeof beforeEach === \"undefined\" ||\n\t\t`${afterEach}`.replace(/\\s/g, \"\") !==\n\t\t\t\"function(name,fn){suites[0].afterEach(name,fn);}\" ||\n\t\t`${beforeEach}`.replace(/\\s/g, \"\") !==\n\t\t\t\"function(name,fn){suites[0].beforeEach(name,fn);}\"\n\t) {\n\t\treturn undefined;\n\t}\n\n\treturn {\n\t\tafterEach: (callback) => {\n\t\t\tafterEach(function (this: Mocha) {\n\t\t\t\tif (this.currentTest.state !== \"passed\") {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tcallback({\n\t\t\t\t\treportComplaint: ({ error }) => {\n\t\t\t\t\t\terror.message = error.message.replace(/\\n/g, \"\\n \");\n\t\t\t\t\t\tthis.test.error(error);\n\t\t\t\t\t},\n\t\t\t\t});\n\t\t\t});\n\t\t},\n\t\tbeforeEach,\n\t\tmapSpyCalls: ({ methodCalls, methodName }) => {\n\t\t\tif (methodCalls.length === 0 || methodName !== \"log\") {\n\t\t\t\treturn methodCalls;\n\t\t\t}\n\n\t\t\t// Mocha logs test names and status just before the after hook\n\t\t\t// The last log, if it exists, might be the spec reporter\n\t\t\t// It'd be nice to have more info on what the reporter has logged...\n\t\t\tconst lastCall = methodCalls[methodCalls.length - 1];\n\t\t\tconst first = lastCall[0];\n\t\t\tif (typeof first === \"string\" && first.startsWith(\" \")) {\n\t\t\t\tmethodCalls = methodCalls.slice(0, methodCalls.length - 1);\n\t\t\t}\n\n\t\t\treturn methodCalls;\n\t\t},\n\t};\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAcO,MAAM,yBAAgD,MAAM;AAIlE,MACC,OAAO,cAAc,eACrB,OAAO,eAAe,eACtB,GAAG,SAAS,GAAG,QAAQ,OAAO,EAAE,MAC/B,sDACD,GAAG,UAAU,GAAG,QAAQ,OAAO,EAAE,MAChC,qDACA;AACD,WAAO;AAAA,EACR;AAEA,SAAO;AAAA,IACN,WAAW,CAAC,aAAa;AACxB,gBAAU,WAAuB;AAChC,YAAI,KAAK,YAAY,UAAU,UAAU;AACxC;AAAA,QACD;AAEA,iBAAS;AAAA,UACR,iBAAiB,CAAC,EAAE,MAAM,MAAM;AAC/B,kBAAM,UAAU,MAAM,QAAQ,QAAQ,OAAO,SAAS;AACtD,iBAAK,KAAK,MAAM,KAAK;AAAA,UACtB;AAAA,QACD,CAAC;AAAA,MACF,CAAC;AAAA,IACF;AAAA,IACA;AAAA,IACA,aAAa,CAAC,EAAE,aAAa,WAAW,MAAM;AAC7C,UAAI,YAAY,WAAW,KAAK,eAAe,OAAO;AACrD,eAAO;AAAA,MACR;AAKA,YAAM,WAAW,YAAY,YAAY,SAAS,CAAC;AACnD,YAAM,QAAQ,SAAS,CAAC;AACxB,UAAI,OAAO,UAAU,YAAY,MAAM,WAAW,IAAI,GAAG;AACxD,sBAAc,YAAY,MAAM,GAAG,YAAY,SAAS,CAAC;AAAA,MAC1D;AAEA,aAAO;AAAA,IACR;AAAA,EACD;AACD;","names":[]}