Tommaso Ferrari
Tommaso Ferrari
I just stumbled upon the same exact issue with a unit test for a component that uses CodeMirror. Thank you for the workaround @D-to-the-K! Using `jest`, I ended up simplifying...
I would be interested in fixing this issue. 🙋 I have done some digging and from what I was able to understand, the issues lies within the [checkSingleThreshold](https://github.com/ArtiomTr/jest-coverage-report-action/blob/9f733792c44d05327cb371766bf78a5261e43936/src/utils/checkSingleThreshold.ts#L44) function. Instead...
Thank you for the detailed response @ArtiomTr! I like the overall plan, the new status table makes a lot more sense, although the table would probably end up having a...
I have been experiencing the same issues since `v1.19`. `yarn upgrade-interactive` became unusable; It would fail to apply the version updates. After updating to `v1.21` I'm not able to `yarn...
@sebaplaza I have the exact same setup (!) with a monorepo (using turborepo) and I am also combining all the coverage reports together into one big one. In my case...
@sebaplaza I opted for another workaround... by (ab)using a custom test reporter. Here is my hacky reporter that takes the `coverage-final.json` and rewrite its content by replacing absolute paths with...
Is there anything we can do to help getting this PR merged? It would be really nice to have relative paths working. 🙏
As a workaround I am suppressing the error messages using the `onConsoleLog` option from [vitest](https://vitest.dev/config/#onconsolelog): ```ts onConsoleLog(log, type) { if (type === 'stderr') { if (log.includes('canonizeResults') || log.includes('addTypename')) { return...