Sebastian Schuberth
06/24/2024, 7:15 AMjvm-test-suite
plugin to register functional tests. Does anyone have a working example how to continue using that with the JVM target of a multiplatform project, while also properly associating compilation like here so that functional tests can access ìnternal`objects?ephemient
06/24/2024, 7:43 AM// library/build.gradle.kts
plugins {
kotlin("jvm")
`jvm-test-suite`
}
to
// library/build.gradle.kts
plugins {
kotlin("multiplatform")
}
kotlin {
jvm()
}
// library-test/build.gradle.kts
plugins {
kotlin("jvm")
`jvm-test-suite`
}
dependencies {
implementation(project(":library"))
}
ephemient
06/24/2024, 7:44 AM