Is there any way to turn on the test logging in the console output?
I know that we can look at the test results generated in a HTML file and check standard output there, but I find it a little bit inconvinient.
I know that there is a way to do this with standard java plugin:
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
But using it in an Android project causes an error:
Could not find method test()
Applying java plugin is unacceptable, of course, as it's not compatible with Android plugins.