Replies: 1 comment
-
This doesn't solve all problems #8843 tries to solve, but can mitigate a bit. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When there's just one failed test, which is the most common scenario, the full output looks like this.
The captures can be very long, because the developer wants to have every details to help them figure out the problem. Since the short summary doesn't show the line number and the code around it, the developer would need to scroll back or search for the error message to see them. If the report doesn't reveal the problem immediately, they would check the logs around the time the error was happening, which, if they have
--exitfirst
enabled, are near the end of the output, so they would scroll down again. This back and forth can reduce productivity.My suggestion is to reorder the output so the developer can always see the key information right away at the bottom of the screen, then scroll back or search for things to dig deeper.
1 vote ·
Beta Was this translation helpful? Give feedback.
All reactions