Skip to content

Commit

Permalink
chore(gradle): add more details to test output
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Hoefer committed Dec 18, 2020
1 parent 419c9e8 commit 57b3046
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ dependencies {

tasks.test {
useJUnitPlatform()
testLogging {
events ("passed", "skipped", "failed") //, "standardOut", "standardError"

showExceptions = true
//exceptionFormat = "full"
showCauses = true
showStackTraces = true
showStandardStreams = false
}
}

tasks.withType<KotlinCompile>() {
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 57b3046

Please sign in to comment.