(url)
| 537 | } |
| 538 | |
| 539 | shouldSkipFileCoverage(url) { |
| 540 | const cached = this.#skipCache.get(url); |
| 541 | if (cached !== undefined) return cached; |
| 542 | const result = this.#computeShouldSkipFileCoverage(url); |
| 543 | this.#skipCache.set(url, result); |
| 544 | return result; |
| 545 | } |
| 546 | |
| 547 | #computeShouldSkipFileCoverage(url) { |
| 548 | // This check filters out core modules, which start with 'node:' in |
no test coverage detected