From 508b395a265bd5326322e20a437d11d19167bb4f Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Tue, 7 Sep 2021 17:53:30 +0200 Subject: Cleanup test dependencies thanks to Kotlin 1.5 --- sw-client/build.gradle.kts | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'sw-client') diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts index 0221c24a..801fe295 100644 --- a/sw-client/build.gradle.kts +++ b/sw-client/build.gradle.kts @@ -19,27 +19,5 @@ kotlin { implementation(libs.kotlinx.coroutines.core) } } - val commonTest by getting { - dependencies { - implementation(kotlin("test-common")) - implementation(kotlin("test-annotations-common")) - } - } - val jvmTest by getting { - dependencies { - implementation(kotlin("test")) - implementation(kotlin("test-junit")) - } - } - val jsMain by getting { - dependencies { - implementation(npm("text-encoding", "0.7.0")) // required by krossbow, because required by kotlinx-io - } - } - val jsTest by getting { - dependencies { - implementation(kotlin("test-js")) - } - } } } -- cgit