We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a9664 commit c41e77aCopy full SHA for c41e77a
task-utils.js
@@ -343,7 +343,9 @@ function includeAllFiles(nycFilename, nycOptions) {
343
344
const nycCoverage = JSON.parse(readFileSync(nycFilename, 'utf8'))
345
const coverageKeys = Object.keys(nycCoverage)
346
- const coveredPaths = coverageKeys.map((key) => nycCoverage[key].path)
+ const coveredPaths = coverageKeys.map(key =>
347
+ nycCoverage[key].path.replace(/\\/g, '/')
348
+ )
349
350
debug('coverage has %d record(s)', coveredPaths.length)
351
// report on first couple of entries
0 commit comments