How to see stdout n stderr of failing tests, this ...
# multiplatform
a
How to see stdout n stderr of failing tests, this setting only applies for jvm:
Copy code
tasks.withType<Test> {
	testLogging {
		exceptionFormat = TestExceptionFormat.FULL
		showStandardStreams = true
		showStackTraces = true
	}
}
1
Corresponding SO question: https://stackoverflow.com/q/65573633/11377112 😅
u