diff options
| author | Albin <albin@mullvad.net> | 2024-01-15 11:25:31 +0100 |
|---|---|---|
| committer | Jonatan Rhodin <jonatan.rhodin@mullvad.net> | 2024-01-15 17:51:18 +0100 |
| commit | 7128ac913ecc9a5b2f55209b7fa59fabc9403161 (patch) | |
| tree | 2d56b316d578f38046509e698fc344a504d20580 /android | |
| parent | 2ddea954bd1f4bfb351d9ae6e93440be000a17a6 (diff) | |
| download | mullvadvpn-7128ac913ecc9a5b2f55209b7fa59fabc9403161.tar.xz mullvadvpn-7128ac913ecc9a5b2f55209b7fa59fabc9403161.zip | |
Fix missing junit5 konsist gradle config
Diffstat (limited to 'android')
| -rw-r--r-- | android/test/arch/build.gradle.kts | 3 |
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) |
