-
Notifications
You must be signed in to change notification settings - Fork 79
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
UI Indicating Progress of the test run (or that it's working at all) #169
Comments
Yeah, I've been running with Would love to hear what Richard thinks about this, too. |
I'd rather print "Running test 23 of 348" and update that in-place (when at a terminal, as opposed to CI) than print successes. Much less noise! |
Was starting to write a reply to #620, but realized it fits better here: Options for TUI for enabling progress output:
What is "at some interval" for showing progress? Is there even a tradeoff here that matters in typical use of elm-test? Probably just whichever's easier would be sufficient.
|
2 Helpful reasons for output
Psychological
With large amounts of test files, running tests can take long (in problematic case we spoke of in particular,
68717 ms
). During this time, it doesn't feel very good as the developer to watch nothing happen on the screen.Helpful
In the case that you won't take the next action until all tests pass (like commit or push), it's useful to know as soon as possible when tests break. In the current state, we don't know until the end if there are any test breaks- but it would be very helpful to see them as they come out so as a developer I can either:
@stoeffel may have additional cases
The text was updated successfully, but these errors were encountered: