Wizard: return junit back to android target

This commit is contained in:
Ilya Kirillov
2020-10-14 04:32:27 +03:00
parent 42914b4046
commit b0bb03d761
3 changed files with 13 additions and 2 deletions
@@ -39,7 +39,9 @@ kotlin {
}
}
androidTest {
dependencies {
implementation 'junit:junit:4.13'
}
}
desktopMain {
@@ -36,7 +36,11 @@ kotlin {
api("androidx.core:core-ktx:1.3.1")
}
}
val androidTest by getting
val androidTest by getting {
dependencies {
implementation("junit:junit:4.13")
}
}
val desktopMain by getting
val desktopTest by getting
}