console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
1 lines • 1.37 kB
Source Map (JSON)
{"version":3,"sources":["../../src/complaining/createComplaint.ts"],"sourcesContent":["import { TestComplaint } from \"../environments/testEnvironmentTypes.js\";\nimport { SpyCallArgs } from \"../spies/spyTypes.js\";\nimport { formatMethodComplaint } from \"./formatMethodComplaint.js\";\n\nexport const createComplaint = (\n\tmethodsWithCalls: [keyof Console, SpyCallArgs[]][],\n): TestComplaint => {\n\tconst methodComplaints = methodsWithCalls\n\t\t.map(formatMethodComplaint)\n\t\t.join(\"\\n\");\n\tconst s = methodsWithCalls.length === 1 ? \"\" : \"s\";\n\n\t// It looks like something wrote to the console during your test!\n\t// Put a breakpoint on this line and check the methodsWithCalls variable to see details.\n\tconst error = new Error(\n\t\t`Oh no! Your test called the following console method${s}:\\n${methodComplaints}`,\n\t);\n\n\treturn {\n\t\terror,\n\t\tmethodComplaints: methodsWithCalls.map(([methodName, methodCalls]) => ({\n\t\t\tmethodCalls,\n\t\t\tmethodName,\n\t\t})),\n\t};\n};\n"],"mappings":"AAEA,SAAS,6BAA6B;AAE/B,MAAM,kBAAkB,CAC9B,qBACmB;AACnB,QAAM,mBAAmB,iBACvB,IAAI,qBAAqB,EACzB,KAAK,IAAI;AACX,QAAM,IAAI,iBAAiB,WAAW,IAAI,KAAK;AAI/C,QAAM,QAAQ,IAAI;AAAA,IACjB,uDAAuD,CAAC;AAAA,EAAM,gBAAgB;AAAA,EAC/E;AAEA,SAAO;AAAA,IACN;AAAA,IACA,kBAAkB,iBAAiB,IAAI,CAAC,CAAC,YAAY,WAAW,OAAO;AAAA,MACtE;AAAA,MACA;AAAA,IACD,EAAE;AAAA,EACH;AACD;","names":[]}