Skip to content

Commit

Permalink
exclude files from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Apr 13, 2016
1 parent e9fac05 commit 0d4ac1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion _develop/webpack.coverage.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ config.module.postLoaders = [{
loader: 'istanbul-instrumenter',
exclude: [
path.resolve(__dirname, '..', 'node_modules'),
path.resolve(__dirname, '..', 'test')
path.resolve(__dirname, '..', 'test'),
path.resolve(__dirname, '..', 'core/polyfill.js'),
path.resolve(__dirname, '..', 'core.js'),
path.resolve(__dirname, '..', 'quill.js')
]
}];
config.module.loaders[3].query = {
Expand Down

0 comments on commit 0d4ac1a

Please sign in to comment.