Wizard: add common tests for iOS/Android template

This commit is contained in:
Ilya Kirillov
2020-07-23 10:59:10 +03:00
committed by Kirill Shmakov
parent 5ffcaf6508
commit b3d48cda8c
18 changed files with 191 additions and 47 deletions
@@ -42,7 +42,9 @@ kotlin {
}
}
androidTest {
dependencies {
implementation 'junit:junit:4.12'
}
}
iosMain {
@@ -39,7 +39,11 @@ kotlin {
implementation("androidx.core:core-ktx:1.2.0")
}
}
val androidTest by getting
val androidTest by getting {
dependencies {
implementation("junit:junit:4.12")
}
}
val iosMain by getting
val iosTest by getting
}
@@ -40,7 +40,9 @@ kotlin {
}
}
androidTest {
dependencies {
implementation 'junit:junit:4.12'
}
}
iosMain {
@@ -37,7 +37,11 @@ kotlin {
implementation("androidx.core:core-ktx:1.2.0")
}
}
val androidTest by getting
val androidTest by getting {
dependencies {
implementation("junit:junit:4.12")
}
}
val iosMain by getting
val iosTest by getting
}