CenFun
CenFun
Can you try remove the downloaded chromium package and reinstall again? the download dir could be `{homedir()}/.chromium-browser-snapshots`, for example: `C:\Users\{user-name}\.chromium-browser-snapshots`
I thought that it is a issue of puppeteer or chromium on your PC, but not puppeteer-chromium-resolver. `puppeteer-chromium-resolver` just download puppeteer and chromium to your PC. Could you please report...
The latest version of C8 can do this with [`--experimental-monocart`](https://github.com/bcoe/c8?tab=readme-ov-file#using-monocart-coverage-reports-experimental) ```sh c8 --experimental-monocart --reporter=v8 --reporter=console-details node foo.js ``` As an alternative, we can also use the custom test reporter ```sh...
The compromise is that the Node test runner can export all the native V8 coverage data, as well as the source code and sourcemap, in custom reports `test:coverage` event. This...
It should be fixed, please try [email protected]
You should use [vitest coverage](https://vitest.dev/config/#coverage) directly instead of c8 + vitest ```sh vitest run --coverage ``` or c8 + [mocha](https://github.com/mochajs/mocha) (or [node test runner](https://nodejs.org/docs/latest/api/test.html))
I created a tool [MCR](https://github.com/cenfun/monocart-coverage-reports) that can generate coverage reports directly from V8. It does not require instrumenting source code like Istanbul. - Preview reports https://cenfun.github.io/monocart-coverage-reports/ - CSS Coverage support...
please try [email protected] - using `zip` option to output zip file ```js // playwright.config.js module.exports = { reporter: [ ['list'], ['monocart-reporter', { name: "My Test Report", outputFile: './monocart-report/index.html', zip: true...
I've thought about this issue too, but I haven't found a good reason to delete the uncompressed files. there are 2 possible solutions: - 1, using `output-folder/index.zip` as your pipeline...
sorry, i forgot test the `merge` with custom zip filename, it should be fixed in `[email protected]`, please have a try.