Skip to content

Commit 98d4545

Browse files
authored
Enable logging of unit tests (#201)
1 parent 435f2a7 commit 98d4545

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,14 @@ allprojects {
2828
google()
2929
mavenCentral()
3030
}
31+
32+
tasks.withType<Test>().configureEach {
33+
testLogging {
34+
events("started", "passed", "skipped", "failed", "standardOut", "standardError")
35+
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
36+
showExceptions = true
37+
showStackTraces = true
38+
showCauses = true
39+
}
40+
}
3141
}

0 commit comments

Comments
 (0)