Hi, I'm trying to setup kotest but am getting this...
# kotest
f
Hi, I'm trying to setup kotest but am getting this error. Any ideas? Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find io.kotestkotest framework multiplatform plugin js jvm6.0.0.M1. I've added the dependency to commonTest
val commonTest by getting {
dependencies {
implementation("io.kotest:kotest-framework-engine:6.0.0.M1")
}
}
And applied the gradle plugin in shared
plugins {
id("io.kotest.multiplatform") version "5.0.2"
}
s
have you tried using version
6.0.0.M1
of the kotest plugin?
f
I got it going, I was applying the plugin at the wrong level in my build script, thanks for the reply
👍 1