MCPcopy Index your code
hub / github.com/nodejs/node / shouldSkipFileCoverage

Method shouldSkipFileCoverage

lib/internal/test_runner/coverage.js:539–545  ·  view source on GitHub ↗
(url)

Source from the content-addressed store, hash-verified

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

Callers 2

mergeCoverageMethod · 0.95

Calls 3

getMethod · 0.65
setMethod · 0.45

Tested by

no test coverage detected