summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2024-01-15 11:25:31 +0100
committerJonatan Rhodin <jonatan.rhodin@mullvad.net>2024-01-15 17:51:18 +0100
commit7128ac913ecc9a5b2f55209b7fa59fabc9403161 (patch)
tree2d56b316d578f38046509e698fc344a504d20580 /android
parent2ddea954bd1f4bfb351d9ae6e93440be000a17a6 (diff)
downloadmullvadvpn-7128ac913ecc9a5b2f55209b7fa59fabc9403161.tar.xz
mullvadvpn-7128ac913ecc9a5b2f55209b7fa59fabc9403161.zip
Fix missing junit5 konsist gradle config
Diffstat (limited to 'android')
-rw-r--r--android/test/arch/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/android/test/arch/build.gradle.kts b/android/test/arch/build.gradle.kts
index 18503fa362..2665083cb0 100644
--- a/android/test/arch/build.gradle.kts
+++ b/android/test/arch/build.gradle.kts
@@ -1,6 +1,7 @@
plugins {
id(Dependencies.Plugin.androidLibraryId)
id(Dependencies.Plugin.kotlinAndroidId)
+ id(Dependencies.Plugin.junit5) version Versions.Plugin.junit5
}
android {
@@ -28,6 +29,8 @@ androidComponents {
}
dependencies {
+ testRuntimeOnly(Dependencies.junitEngine)
+
testImplementation(Dependencies.Compose.uiToolingAndroidPreview)
testImplementation(Dependencies.AndroidX.appcompat)
testImplementation(Dependencies.junitApi)