-
Notifications
You must be signed in to change notification settings - Fork 47.8k
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
code coverage grunt tasks #550
code coverage grunt tasks #550
Conversation
Also fixes #541 |
eep, I've got a bug in my |
if (log.message.indexOf('not ok ') === 0) log.type = 'error'; | ||
else if (log.message.indexOf('ok ') === 0) log.type = 'ok'; | ||
else if (log.message.indexOf('COVER') === 0) log.type = 'coverage'; | ||
else if (log.message.indexOf('DONE\t') === 0) log.type = 'coverage done'; |
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.
@zpao will probably complain that you should always use braces and break lines, even for if
statements like these.
@subtleGradient Looks good with those nits addressed. |
Nits picked. ICANHAZMERGE? |
u can hazmerge soon as Travis says so |
Rebased. |
I don't know what's up with these…
|
Tests are failing on master. https://travis-ci.org/facebook/react/builds/14155444 |
The Travis CI build is failing because of 7df127d, b91396b and d853c85. |
No description provided.