Hi! I'm using the gradle kotlin dsl with a library, and i have tests that output to stdout. gradle gobbles stdout by default. is there someway i can enable showing std out in the output?
in traditional gradle it's possible to do this by adding:
test {
testLogging.showStandardStreams = true
}
ref:
https://stackoverflow.com/a/41107537/159762
is there a way to do it with the gradle kotlin dsl?