better test reporting

This commit is contained in:
2026-06-22 12:06:03 +02:00
parent b7fa3d887e
commit b8d41a6c64

View File

@@ -36,4 +36,10 @@ kotlin {
tasks.withType<Test> { tasks.withType<Test> {
useJUnitPlatform() useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
showExceptions = true
showStandardStreams = true
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
} }