jest's collectCoverageFrom
Type of issue: feature suggestion
Chapter: 02
I added the following config in my package.json
:
"jest": {
"collectCoverageFrom": [
"src/**.{js,jsx}"
]
}
I think it really helps in showing real code coverage by collecting coverage from all src
files rather than only files that are being imported by tests (default behaviour).