diff options
| author | XhmikosR <[email protected]> | 2020-05-09 22:28:09 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-05-12 08:31:38 +0300 |
| commit | fbdacc0e92d380af79f5a13fa5f19536beb31191 (patch) | |
| tree | ec4a24ec4e3240e3820a78fba096dac083189751 | |
| parent | 86fbe1c2ef1b082387ec2acca821daf7831c6c24 (diff) | |
| download | bootstrap-fbdacc0e92d380af79f5a13fa5f19536beb31191.tar.xz bootstrap-fbdacc0e92d380af79f5a13fa5f19536beb31191.zip | |
coverage: ignore node_modules
| -rw-r--r-- | js/tests/karma.conf.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/js/tests/karma.conf.js b/js/tests/karma.conf.js index 1ab0629a4..6e1effc3a 100644 --- a/js/tests/karma.conf.js +++ b/js/tests/karma.conf.js @@ -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 |
