()
| 414 | } |
| 415 | |
| 416 | public disableCoverage(): void { |
| 417 | this.configOverride.coverage ??= {} as any |
| 418 | this.configOverride.coverage!.enabled = false |
| 419 | // onFileTransform is the only thing that affects hash |
| 420 | if (this.coverageProvider?.onFileTransform) { |
| 421 | this.clearAllCachePaths() |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | private clearAllCachePaths() { |
| 426 | this.projects.forEach(({ vite, browser }) => { |
no test coverage detected