Didier Villevalois
11/20/2021, 11:36 AMcommonTest
source-set:
implementation("io.kotest:kotest-framework-engine:$kotestVersion")
implementation("io.kotest:kotest-framework-datatest:$kotestVersion")
I also had to add this dependencies to my jvmTest
source-set, to have the tests picked up by JUnit:
implementation("io.kotest:kotest-runner-junit5:$kotestVersion")
1. What are the corresponding ways to have tests picked up for JS and Native targets?
2. It seems to me that kotest-framework-datatest
is not yet supported on Native target? (cf. https://search.maven.org/search?q=g:io.kotest%20kotest-framework-datatest) Will this be supported at some point? (I don't seem to see anything in its source code https://github.com/kotest/kotest/tree/master/kotest-framework/kotest-framework-datatest that would prevent it from running on Native, except the fact that the target is not defined in the Gradle build file. Or am I missing something?)sam
11/20/2021, 2:45 PMDidier Villevalois
11/20/2021, 3:01 PM5.0.0.RC
.sam
11/20/2021, 4:04 PMDidier Villevalois
11/20/2021, 4:36 PM