summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle.kts4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 78bad77..1f1a123 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,3 +1,4 @@
+import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
@@ -76,6 +77,9 @@ tasks.withType<KotlinCompile> {
tasks.withType<Test> {
useJUnitPlatform()
+ testLogging {
+ events(TestLogEvent.FAILED, TestLogEvent.PASSED, TestLogEvent.SKIPPED)
+ }
}
task<Test>("integrationTest") {