You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was in another issue but hasn't been dealt with:
Add a clear indication that tests are complete.
Adding a 'done' message in the main view after all tests have run would:
Ensure that its easy to determine when tests are complete
if errors occur in before or after hooks not all tests will run, leading to the progress % stopping at less than 100%
Allow the test framework to be more easily installed in a CI system and the results extracted at the end of the run
Basically, because:
no message is posted at the end of the run,
nor is the number of tests to be run rendered anywhere
the progress indicator percentage is rendered in a canvas element (making it hard to read in code)
we've ended up just putting in a fixed length wait for the tests to run. That's brittle and wasting time (as it needs to wait just longer than the longest possible run).
Please can we have either the number of tests or a message posted in the window on completion.
The text was updated successfully, but these errors were encountered:
Presumably you'd just add the message elements to the HTML with CSS hiding them then show one in the above callback (depending on result) + hide again on a new run.
This was in another issue but hasn't been dealt with:
Basically, because:
we've ended up just putting in a fixed length wait for the tests to run. That's brittle and wasting time (as it needs to wait just longer than the longest possible run).
Please can we have either the number of tests or a message posted in the window on completion.
The text was updated successfully, but these errors were encountered: