-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Compact reporter does not handle [!shouldfail] properly #878
Comments
I thought a bit about how this might look like but any attempts to have all the information on a single line ended up being quite messy (and it will only get worse with #2360). How about we just copy the output format from the console reporter exactly, save for the "totals divider"? |
Yeah, that seems fine. |
Okay, stylistically, would you prefer (1) a common base class for console and compact reporter, (2) free functions used by both or (3) code duplication? |
|
Description
Compact reporter does not handle the
[!shouldfail]
tag properly. Given this code (from #876):compact reporter's output is
which, while kind-of correct, is surprising. Standard console reporter's output looks like this:
which is much clearer about what happened and should be in some way replicated by the compact reporter.
Extra information
The text was updated successfully, but these errors were encountered: