Skip to content

Commit 78907f2

Browse files
build: enable additional information for tests
1 parent 0fdde50 commit 78907f2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ dependencies {
3232

3333
tasks.withType<Test> {
3434
useJUnitPlatform()
35+
testLogging {
36+
showStandardStreams = true
37+
showCauses = true
38+
showStackTraces = true
39+
events(*org.gradle.api.tasks.testing.logging.TestLogEvent.values())
40+
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
41+
}
3542
}
3643

3744
java {

0 commit comments

Comments
 (0)