aboutsummaryrefslogtreecommitdiffstats
path: root/web/package.json
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-05-09 19:12:56 +0200
committerMaximilian Hils <git@maximilianhils.com>2017-05-09 19:12:56 +0200
commit537d5fa229966a215e0bf6824f49dffde179c103 (patch)
tree7c92f9a91068cda71151ec03117f01c4a567b93f /web/package.json
parent457bc36d7f83ef2fa5f461517df482d12f613797 (diff)
downloadmitmproxy-537d5fa229966a215e0bf6824f49dffde179c103.tar.gz
mitmproxy-537d5fa229966a215e0bf6824f49dffde179c103.tar.bz2
mitmproxy-537d5fa229966a215e0bf6824f49dffde179c103.zip
web: do not collect coverage when invoking "jest"
this is annoying when runnig jest --watch=all.
Diffstat (limited to 'web/package.json')
-rw-r--r--web/package.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/package.json b/web/package.json
index c9f1ae40..ca170a54 100644
--- a/web/package.json
+++ b/web/package.json
@@ -2,7 +2,7 @@
"name": "mitmproxy",
"private": true,
"scripts": {
- "test": "jest",
+ "test": "jest --coverage",
"build": "gulp prod",
"start": "gulp"
},
@@ -15,7 +15,6 @@
"react"
],
"coverageDirectory": "./coverage",
- "collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/src/js/filt/filt.js"
],