My common tests don’t seem to be running at all when targeting ios specifically:
•
jvmTest
runs
commonTest
targeting JVM and runs tests
•
iosSimulatorArm64Test
doesn’t seem to compile/run
commonTest
targets iOS target 🤔
I have
framework-engine
dependency added to
commonTest
, anything I might be missing?
Kirill Zhukov
03/03/2023, 10:00 PM
How my iOS source sets are configured:
Copy code
ios()
iosSimulatorArm64()
sourceSets {
val iosMain by creating
val iosTest by creating
targets.forEach {
getByName("${it.name}Main").dependsOn(iosMain)
getByName("${it.name}Test").dependsOn(iosTest)
}
}
Kirill Zhukov
03/04/2023, 2:07 AM
It looks like spec tests aren’t being picked on native