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
Every test failure prints a message along the lines of this:
To run this test again: /path/to/dart test test/my_tests.dart -p vm --plain-name 'name of the test'
This is already quite distracting, but it printing immediately before the next test info line without any blank lines for padding is even worse.
As a developer, I most often simply need to see which tests failed and why. In the case that I do need to re-run the test on its own, it takes less than 10 seconds to find out how by reading dart test --help. Therefore I would like these messages to be removed or suppressed by default. If only by default, perhaps a single message could be printed at the end of the test run along the lines of this:
Some tests failed. To print the command to re-run each failed test individually, run again with `--print-run-command-on-failure`.
Alternatively, if you all decide that you want to keep these messages, please strongly consider adding a single line of padding between it and the next test info line:
To run this test again: /path/to/dart test test/my_tests.dart -p vm --plain-name 'name of the test'
+
00:00 +1 -1: test/my_tests.dart: name of the next test [E]
The text was updated successfully, but these errors were encountered:
Every test failure prints a message along the lines of this:
This is already quite distracting, but it printing immediately before the next test info line without any blank lines for padding is even worse.
As a developer, I most often simply need to see which tests failed and why. In the case that I do need to re-run the test on its own, it takes less than 10 seconds to find out how by reading
dart test --help
. Therefore I would like these messages to be removed or suppressed by default. If only by default, perhaps a single message could be printed at the end of the test run along the lines of this:Alternatively, if you all decide that you want to keep these messages, please strongly consider adding a single line of padding between it and the next test info line:
To run this test again: /path/to/dart test test/my_tests.dart -p vm --plain-name 'name of the test' + 00:00 +1 -1: test/my_tests.dart: name of the next test [E]
The text was updated successfully, but these errors were encountered: