-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Discard reporter output for tests that succeed. #1360
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
Conversation
7e3aeca
to
6caffc0
Compare
if (reporter == null) { | ||
consoleReporter.doReport(d) | ||
} else { | ||
reporter.doReport(d) |
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.
why not wait until test finished and then if (reporter.hasErrors) reporter.flush
?
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.
Because I do not have access to the context here.
6caffc0
to
fc09686
Compare
if (innerStoreReporter == null) { | ||
consoleReporter.report(d) | ||
} else { | ||
innerStoreReporter.report(d) |
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.
Since last update I changed .doReport(d)
with .report(d)
.
e871021
to
abf258e
Compare
For the |
LGTM |
abf258e
to
1b4511b
Compare
Just changed the commit message |
No description provided.