Daniele Segato
10/24/2024, 11:03 AMKotlinSourceSet with name 'desktopTest' not found.
I’m using Kotlin 2.0.21 and compose multiplatform 1.7.0Albert Chang
10/24/2024, 11:08 AMdesktopTest
should be used if the name of the JVM source set is overridden:
kotlin {
jvm("desktop")
...
}
If you are just specifying jvm()
, use jvmTest
.Daniele Segato
10/24/2024, 5:16 PM