I would like to see test results ( system.out/err, log messages from components being tested ) as they run in the same console I run:
gradle test >
For those using Kotlin DSL, you can do:
tasks { named("test") { testLogging.showStandardStreams = true } }