UNPKG

console-fail-test

Version:

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

1 lines • 3.43 kB
{"version":3,"sources":["../../src/environments/selectTestFramework.ts"],"sourcesContent":["import { CftRequest, SupportedTestFramework } from \"../types.js\";\nimport { selectAvaEnvironment } from \"./ava.js\";\nimport { selectJasmineEnvironment } from \"./jasmine.js\";\nimport { selectJestEnvironment } from \"./jest.js\";\nimport { selectLabEnvironment } from \"./lab.js\";\nimport { selectMochaEnvironment } from \"./mocha.js\";\nimport { selectNodeTapEnvironment } from \"./nodeTap.js\";\nimport { TestFrameworkSelector } from \"./testEnvironmentTypes.js\";\nimport { selectVitestEnvironment } from \"./vitest.js\";\n\nconst testEnvironmentsByName = new Map<\n\tSupportedTestFramework,\n\tTestFrameworkSelector\n>([\n\t[\"jasmine\", selectJasmineEnvironment],\n\t[\"jest\", selectJestEnvironment],\n\t[\"mocha\", selectMochaEnvironment],\n\t[\"vitest\", selectVitestEnvironment],\n]);\n\nconst detectableTestEnvironmentSelectors: TestFrameworkSelector[] = [\n\t// These environments only work with received modules, so they should come first\n\tselectAvaEnvironment,\n\tselectLabEnvironment,\n\tselectNodeTapEnvironment,\n\n\tselectVitestEnvironment,\n\n\t// Jest should come before Jasmine because Jest includes a monkey-patched Jasmine\n\tselectJestEnvironment,\n\tselectJasmineEnvironment,\n\n\t// Mocha should be last because it's difficult to accurately detect\n\t// See https://github.com/JoshuaKGoldberg/console-fail-test/issues/10\n\tselectMochaEnvironment,\n];\n\nexport const selectTestFramework = (request: CftRequest) => {\n\t// If a test environment is requested by name, it must exist\n\tif (typeof request.testFramework === \"string\") {\n\t\tconst getter = testEnvironmentsByName.get(request.testFramework);\n\t\tif (getter === undefined) {\n\t\t\tthrow new Error(\n\t\t\t\t`Requested test framework '${request.testFramework}' not known by name in console-fail-test.`,\n\t\t\t);\n\t\t}\n\n\t\tconst environment = getter(request);\n\t\tif (environment === undefined) {\n\t\t\tthrow new Error(\n\t\t\t\t`Requested test framework '${request.testFramework}' does not seem to be active.`,\n\t\t\t);\n\t\t}\n\n\t\treturn environment;\n\t}\n\n\t// Otherwise, attempt to auto-detect an active one\n\tfor (const testEnvironmentGetter of detectableTestEnvironmentSelectors) {\n\t\tconst environment = testEnvironmentGetter(request);\n\n\t\tif (environment !== undefined) {\n\t\t\treturn environment;\n\t\t}\n\t}\n\n\tthrow new Error(\n\t\t\"Could not auto-detect test environment; consider passing it directly to cft.\",\n\t);\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,iBAAqC;AACrC,qBAAyC;AACzC,kBAAsC;AACtC,iBAAqC;AACrC,mBAAuC;AACvC,qBAAyC;AAEzC,oBAAwC;AAExC,MAAM,yBAAyB,oBAAI,IAGjC;AAAA,EACD,CAAC,WAAW,uCAAwB;AAAA,EACpC,CAAC,QAAQ,iCAAqB;AAAA,EAC9B,CAAC,SAAS,mCAAsB;AAAA,EAChC,CAAC,UAAU,qCAAuB;AACnC,CAAC;AAED,MAAM,qCAA8D;AAAA;AAAA,EAEnE;AAAA,EACA;AAAA,EACA;AAAA,EAEA;AAAA;AAAA,EAGA;AAAA,EACA;AAAA;AAAA;AAAA,EAIA;AACD;AAEO,MAAM,sBAAsB,CAAC,YAAwB;AAE3D,MAAI,OAAO,QAAQ,kBAAkB,UAAU;AAC9C,UAAM,SAAS,uBAAuB,IAAI,QAAQ,aAAa;AAC/D,QAAI,WAAW,QAAW;AACzB,YAAM,IAAI;AAAA,QACT,6BAA6B,QAAQ,aAAa;AAAA,MACnD;AAAA,IACD;AAEA,UAAM,cAAc,OAAO,OAAO;AAClC,QAAI,gBAAgB,QAAW;AAC9B,YAAM,IAAI;AAAA,QACT,6BAA6B,QAAQ,aAAa;AAAA,MACnD;AAAA,IACD;AAEA,WAAO;AAAA,EACR;AAGA,aAAW,yBAAyB,oCAAoC;AACvE,UAAM,cAAc,sBAAsB,OAAO;AAEjD,QAAI,gBAAgB,QAAW;AAC9B,aAAO;AAAA,IACR;AAAA,EACD;AAEA,QAAM,IAAI;AAAA,IACT;AAAA,EACD;AACD;","names":[]}