Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Feb 11, 2021
1 parent b0245ee commit e7039b9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,24 @@ module.exports = config => {
},

webpack: {
module: webpackConfig.module,
resolve: webpackConfig.resolve,
mode: webpackConfig.mode,
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader'
},
{
test: /\.ts$/,
use: {loader: 'istanbul-instrumenter-loader'},
enforce: 'post',
exclude: /\.spec\.ts$/
}

]
},
},

// test results reporter to use
Expand Down

0 comments on commit e7039b9

Please sign in to comment.