Andrew O Hart
02/24/2022, 3:45 PMimplementation(kotlin("test"))
In the commonTest in build.gradle, it works, but I don't see something like this being declared in kampkitMichael Friend
02/24/2022, 3:56 PMkotlin-test
as a transitive dependency from koin-test
, since that module declares it as an api
(see here) dependency its available to us without explicitly declaring the dependency. That being said we should probably add it explicitly to avoid this confusionAndrew O Hart
02/24/2022, 5:15 PMimplementation(kotlin("test"))
in commonTest?
I was doing everything out of libs.versions.toml as per KampKit, but in this case I'm guessing its fine to directly reference it in the build.gradle in the way i postedMichael Friend
02/24/2022, 7:51 PMkotlin-test-common = { module = "org.jetbrains.kotlin:kotlin-test-common", version.ref = "kotlin" }
kotlin-test-annotations-common = { module = "org.jetbrains.kotlin:kotlin-test-annotations-common", version.ref = "kotlin" }
Andrew O Hart
02/24/2022, 9:11 PM