I'm trying to write some unit tests for my ios tar...
# multiplatform
o
I'm trying to write some unit tests for my ios target but I get
No tasks available
error from Android Studio. Why does it happen?
here is how i set test target
Copy code
val iosArm64Test by getting
val iosX64Test by getting
val iosTest by creating {
    iosArm64Test.dependsOn(this)
    iosX64Test.dependsOn(this)
    dependsOn(commonTest)
}
r
usually because there is a compilation error somewhere. Can you try running from command line, you may see output
try
./gradlew iosTest -i
o
build is successful but no test run
r
I have the same issue with android tests. AFAIR it was working just fine before I switched to Kotlin 1.5.x.
Running tests via gradle works though.