Is there a way to truncate the test results to only show result text for unit tests only when the unit test has failed? I\'m working on a Scala project that has 850 unit tests,
You could try the sbt command
last-grep error test
This should show you the errors/failures only.