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).
See: jestjs/jest#1211
Type of issue: feature suggestion
Chapter: 02
I added the following config in my
package.json:I think it really helps in showing real code coverage by collecting coverage from all
srcfiles rather than only files that are being imported by tests (default behaviour).See: jestjs/jest#1211