You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are instantiating JEST with code coverage. It successfully generates a usage report in the console which shows the coverage as 0%,but it still says PASSED!
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.
We are instantiating JEST with code coverage. It successfully generates a usage report in the console which shows the coverage as 0%,but it still says PASSED!
JEST configuration is below
"jest": {
"collectCoverage": true,
"coverageDirectory": "../coverage",
"testPathIgnorePatterns": [
"/node_modules/"
],
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
The text was updated successfully, but these errors were encountered: