summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/build.gradle11
1 files changed, 11 insertions, 0 deletions
diff --git a/android/build.gradle b/android/build.gradle
index eed3cb6505..91f1ff8945 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -82,6 +82,17 @@ android {
dependsOn copyExtraAssets
}
}
+
+ testOptions {
+ unitTests.all {
+ testLogging {
+ outputs.upToDateWhen { false }
+ events "passed", "skipped", "failed", "standardOut", "standardError"
+ showCauses true
+ showExceptions true
+ }
+ }
+ }
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {