diff --git a/core/common/build.gradle.dcl b/core/common/build.gradle.dcl index 35524b541..327be1a1b 100644 --- a/core/common/build.gradle.dcl +++ b/core/common/build.gradle.dcl @@ -11,8 +11,8 @@ androidLibrary { testing { dependencies { - testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") - testImplementation("app.cash.turbine:turbine:1.0.0") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") + implementation("app.cash.turbine:turbine:1.0.0") } } } diff --git a/core/data/build.gradle.dcl b/core/data/build.gradle.dcl index c07b830ef..2ea4315e9 100644 --- a/core/data/build.gradle.dcl +++ b/core/data/build.gradle.dcl @@ -24,10 +24,10 @@ androidLibrary { testing { dependencies { - testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") - testImplementation(project(":core:datastore-test")) - testImplementation(project(":core:testing")) - testImplementation(project(":core:network")) + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3") + implementation(project(":core:datastore-test")) + implementation(project(":core:testing")) + implementation(project(":core:network")) } jacoco { diff --git a/core/domain/build.gradle.dcl b/core/domain/build.gradle.dcl index e07d6414c..bb32ab6de 100644 --- a/core/domain/build.gradle.dcl +++ b/core/domain/build.gradle.dcl @@ -16,7 +16,7 @@ androidLibrary { testing { dependencies { - testImplementation(project(":core:testing")) + implementation(project(":core:testing")) } jacoco { diff --git a/feature/bookmarks/build.gradle.dcl b/feature/bookmarks/build.gradle.dcl index df74cbbcc..991a08c17 100644 --- a/feature/bookmarks/build.gradle.dcl +++ b/feature/bookmarks/build.gradle.dcl @@ -15,8 +15,8 @@ androidLibrary { testing { dependencies { - testImplementation(project(":core:testing")) - androidTestImplementation(project(":core:testing")) + implementation(project(":core:testing")) + androidImplementation(project(":core:testing")) } } }