Write now my test config looks like:
testLogging.showStandardStreams = true
beforeTest { descriptor ->
logger.lifecycle("--------------------------------------------------------------------------------------------------------------------------------------")
logger.lifecycle("Running test: " + descriptor)
}
afterTest { descriptor ->
logger.lifecycle("Finished test: " + descriptor)
}
I like this, but I would like more…
I’d like for test results (pass/fail) to be presented as the tests are executed. And if the test fails, only then would I like to see the std out for that test
Is this doable?