Hi! Why are versions of "kotest-core-jvm" lagging ...
# kotest
m
Hi! Why are versions of "kotest-core-jvm" lagging behind "kotest-assertions-core-jvm" etc?
s
core is an old module no longer needed
m
Hmm, so where to get FunSpec from then?
s
This will run through the modules you need for a particular setup https://kotest.io/docs/quickstart
m
Yeah, but not mentioning how to get the DSL test styles.
s
they come in as part of kotest-framework-api, but that will be brought in automatically when you add the junit runner
are you JVM based ?
m
Ah, I was lacking junit runner before I added that old lib. Looks like I can just remove it then.
Yes
s
ok so then yeah all you need is
testImplementation 'io.kotest:kotest-runner-junit5:$version'
that's the junit platform runner but it brings in the other stuff you need
🙌 1
If you want assertions too then
testImplementation 'io.kotest:kotest-assertions-core:$version'
m
Yeah, got it to work then, thanks! 🙂
s
awesome