aboutsummaryrefslogtreecommitdiff
path: root/shared/build.gradle.kts
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2022-12-14 17:37:22 -0600
committerIván Ávalos <avalos@disroot.org>2022-12-14 17:37:22 -0600
commitfacf751f941a2f85d0ce236c4a61f21e84758199 (patch)
tree82c35a286310873b1d784c68e04ba69246cea830 /shared/build.gradle.kts
parentec157026deea7b72ff233a20c0ed40fa548f75d6 (diff)
downloadetbsa-trackermap-mobile-facf751f941a2f85d0ce236c4a61f21e84758199.tar.gz
etbsa-trackermap-mobile-facf751f941a2f85d0ce236c4a61f21e84758199.tar.bz2
etbsa-trackermap-mobile-facf751f941a2f85d0ce236c4a61f21e84758199.zip
Removed unused test modules
Diffstat (limited to 'shared/build.gradle.kts')
-rw-r--r--shared/build.gradle.kts21
1 files changed, 0 insertions, 21 deletions
diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts
index 0ecd643..2488cde 100644
--- a/shared/build.gradle.kts
+++ b/shared/build.gradle.kts
@@ -35,23 +35,11 @@ kotlin {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.1")
}
}
- val commonTest by getting {
- dependencies {
- implementation(kotlin("test-common"))
- implementation(kotlin("test-annotations-common"))
- }
- }
val androidMain by getting {
dependencies {
implementation("io.ktor:ktor-client-cio:$ktor_version")
}
}
- val androidTest by getting {
- dependencies {
- implementation(kotlin("test-junit"))
- implementation("junit:junit:4.13.2")
- }
- }
val iosX64Main by getting
val iosArm64Main by getting
//val iosSimulatorArm64Main by getting
@@ -64,15 +52,6 @@ kotlin {
implementation("io.ktor:ktor-client-ios:$ktor_version")
}
}
- val iosX64Test by getting
- val iosArm64Test by getting
- //val iosSimulatorArm64Test by getting
- val iosTest by creating {
- dependsOn(commonTest)
- iosX64Test.dependsOn(this)
- iosArm64Test.dependsOn(this)
- //iosSimulatorArm64Test.dependsOn(this)
- }
}
}