When I run `gradle check` in the console, gradle s...
# multiplatform
h
When I run
gradle check
in the console, gradle seems to eat my log statements. This trick: https://stackoverflow.com/a/9357286 didn't help (I guess it's too old). Does anyone know how I get my logging visible during tests in my MPP?
Got it! Using
tasks.withType(Test)
(instead of just
test
) did the trick.