Skip to content

Commit

Permalink
coverage: ignore node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed May 12, 2020
1 parent 86fbe1c commit fbdacc0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/tests/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ const conf = {
rollupPreprocessor: {
plugins: [
istanbul({
exclude: ['js/tests/unit/**/*.spec.js', 'js/tests/helpers/**/*.js']
exclude: [
'node_modules/**',
'js/tests/unit/**/*.spec.js',
'js/tests/helpers/**/*.js'
]
}),
babel({
// Only transpile our source code
Expand Down

0 comments on commit fbdacc0

Please sign in to comment.