Anyone have any luck running kotest on kotlin native?
b
Anyone have any luck running kotest on kotlin native?
a
Yes here are my dependencies CommonTest dependencies
Copy code
implementation("io.kotest:kotest-assertions-core:$kotestVersion")                
implementation("io.kotest:kotest-framework-engine:$kotestVersion")
implementation("io.kotest:kotest-framework-datatest:$kotestVersion")

implementation("io.kotest:kotest-property:$kotestVersion")
JvmTest dependencies
Copy code
implementation("io.kotest:kotest-runner-junit5:$kotestVersion")
b
thanks!
I tried getting the tests to run without having any jvm tests but I guess maybe that’s not possible? (i.e only having tests in the commonTest folder)
a
Yes I'm able to define and run tests only in commonTest. Do you have the Kotest intellij plugin? Without it you won't see the play/run test button for commonTest