CenFun

Results 91 comments of CenFun

sorry, it should not be same issue. I can reproduce it with ` test-results.zip` your provided. there is a image not in the test-results folder ``` .../tests/test-results/example-screenshot-chromium/screenshot-1-diff.png .../tests/test-results/example-screenshot-chromium/screenshot-1-actual.png .../tests/example.spec.ts-snapshots/screenshot-1-chromium-win32.png ```...

When test with `@playwright/test` version `1.36.2`, the path are correct as expected ``` .../tests/test-results/example-screenshot-chromium\screenshot-1-expected.png ../tests/test-results/example-screenshot-chromium\screenshot-1-actual.png ../tests/test-results/example-screenshot-chromium\screenshot-1-diff.png ``` But if updated `@playwright/test` version to 1.39 or 1.40, the path of expected...

good catch, please try version 2.0.1 currently, just replace the expected path with hard-code way in UI. It should be a bug of Playwright, the expected image should be in...

I am not familiar with Electron. Could you provide a minimal repo to reproduce it locally? I'm not sure if Electron can provide v8 coverage data, what is your specific...

@fanksy please try new version `[email protected]`, it should be fixed. A CLI library can not be initialized in Electron, but I don't think it is necessary to support CLI in...

Could you please tell us more infomation? 1, build tool and version, for example, webpack@5? 2, if `minify` disabled? for example: webpack config: mode = development 3, provide a small...

Sorry I can't reproduce the issue. see repo: https://github.com/cenfun/vite-vue-coverage ![image](https://github.com/cenfun/monocart-coverage-reports/assets/334577/0af0ef8c-3476-4a00-8fcc-7a567fa44de8) ![image](https://github.com/cenfun/monocart-coverage-reports/assets/334577/44192619-9faa-4f58-804a-0c319a6118c1)

closed because it's long time no activity. Please open a new issue if the issue is still relevant

I found that comment following two lines in `node_modules/collect-v8-coverage/index.js` will fix it. ``` //await this.postSession('Profiler.stopPreciseCoverage'); //await this.postSession('Profiler.disable'); ``` ![image](https://github.com/jestjs/jest/assets/334577/62bd0b36-424a-4f50-9148-f748c993dfad)

Seems it can be fixed with `await this.postSession('Debugger.enable');` see https://github.com/SimenB/collect-v8-coverage/pull/235/files