Is there any intention on addressing this? `The In...
# kotest
i
Is there any intention on addressing this?
The Intellij plugin requires Kotest 4.2 or higher and will not run common tests of a multiplatform project
The error that i’m getting when trying to run single tests on a commonTest module:
Copy code
com.intellij.execution.CantRunException: 'Kotlin SDK' is misconfigured
	at com.intellij.execution.CantRunException.jdkMisconfigured(CantRunException.java:37)
	at com.intellij.execution.configurations.JavaParameters.getValidJdkToRunModule(JavaParameters.java:126)
	at com.intellij.execution.util.JavaParametersUtil.createModuleJdk(JavaParametersUtil.java:145)
	at com.intellij.execution.util.JavaParametersUtil.configureModule(JavaParametersUtil.java:134)
	at com.intellij.execution.util.JavaParametersUtil.configureModule(JavaParametersUtil.java:127)
	at com.intellij.execution.JavaTestFrameworkRunnableState.configureClasspath(JavaTestFrameworkRunnableState.java:490)
	at com.intellij.execution.JavaTestFrameworkRunnableState.lambda$createJavaParameters$4(JavaTestFrameworkRunnableState.java:352)
	at com.intellij.openapi.application.ReadAction.lambda$run$1(ReadAction.java:64)
	at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:923)
	at com.intellij.openapi.application.ReadAction.compute(ReadAction.java:76)
	at com.intellij.openapi.application.ReadAction.run(ReadAction.java:63)
	at com.intellij.execution.JavaTestFrameworkRunnableState.createJavaParameters(JavaTestFrameworkRunnableState.java:351)
	at io.kotest.plugin.intellij.run.KotestRunnableState.createJavaParameters(KotestRunnableState.kt:27)
It happens when i try to run a single test or container in the gutter, or in the plugin. only way to run is on the class level gutter icon
s
We are waiting for compiler plugins to go stable.
Otherwise we can't make it work without needing kotest versions for every minor kotlin release
i
Ok undertstood, thanks! just wanted to verify that the error i’m getting is known