Ok I made it work after restarting the IDE :disapp...
# kotest
m
Ok I made it work after restarting the IDE 😞 However, IO don’t know if that’s expected but when I run my tests through gradle, only the test written with kotest are recognized, all the other ones, written with Junit 5, are ignored. Is it an expected behavior?
s
You need to make sure you have both engines on the classpath (so kotest junit runner and junit jupiter)
then you might need to "include" both engines in your gradle config
That thread probably has details
m
In my case, I added that to my projet (kts) :
Copy code
tasks.withType<Test> {
    useJUnitPlatform()
}
m
INdeed it works after adding back the jupiter runner as a dependency
👍🏻 1