-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable code coverage #474
Enable code coverage #474
Conversation
package.json
Outdated
@@ -14,7 +14,8 @@ | |||
"test": "jest", | |||
"build": "gulp build", | |||
"watch": "gulp watch", | |||
"ci": "npm run lint && npm run bootstrap && jest" | |||
"ci": "npm run lint && npm run bootstrap && jest --coverage && codecov -f coverage/coverage-final.json", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
npm run cov
instead of jest --coverage
done |
Codecov Report
@@ Coverage Diff @@
## master #474 +/- ##
=========================================
Coverage ? 82.25%
=========================================
Files ? 35
Lines ? 2462
Branches ? 808
=========================================
Hits ? 2025
Misses ? 257
Partials ? 180 Continue to review full report at Codecov.
|
@hzoo it's OK for the first PR with |
I propose to add code coverage to this repo.
Can someone from members enable integration with
codecov.io
(and then restart CI)?