Hey <@UVAR0DXP0>, I just upvoted your <https://git...
# kotest
s
Hey @Emil Kantis, I just upvoted your https://github.com/gradle/gradle/issues/25107. Until that's implemented would you have a pointer to the correct syntax for creating a Gradle
JvmTestSuite
for the
jvmTest
source set only in a Kotlin multiplatform project?
e
Sorry, I don’t. I had no immediate use case for it but realized that it’s kind of inconvenient for multi platform projects that this is tied to Jvm
Maybe the Kotest multi platform plugin could define a MultiplatformTestSuite for this.
s
Looks like it's as simple as applying the
jvm-test-suite
plugin manually and then doing
Copy code
sourceSets {
        jvmTest {
            testing {
                suites {
                    register<JvmTestSuite>("funTest") {
👍 1
No, that does not seem to work as expected:
KotlinJvmCompilation with name 'funTest' not found.