Skip to content

Commit

Permalink
fix(coverage): istanbul provider to use coverage.extension (#2641)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Jan 11, 2023
1 parent 09d6222 commit 7e38890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/coverage-istanbul/src/provider.ts
Expand Up @@ -66,7 +66,7 @@ export class IstanbulCoverageProvider implements CoverageProvider {
include: typeof this.options.include === 'undefined' ? undefined : [...this.options.include],
exclude: [...defaultExclude, ...defaultInclude, ...this.options.exclude],
excludeNodeModules: true,
extension: configDefaults.coverage.extension,
extension: this.options.extension,
})
}

Expand Down

0 comments on commit 7e38890

Please sign in to comment.