Hi,
I am using ScalaTest 2.0 and have the following in my build.sbt to generate junit XML reports for our CI environment:
testOptions in ThisBuild <+= (target in Test) map {
t => Tests.Argument("-u", t + "/test-reports")
}
This works as expected, however adding this suppresses output in the console and I no longer see this green/red output for passing/failing tests such as:
[info] WordSplitterTest:
[info] Basic Word Splitter
[info] - should split words on spaces
[info] German Word Splitter
[info] - should split words using file
Is there a way to have both the junit XML reports generated AND keep the above console output?
Thanks
Ian