https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
k

kelvinharron

09/01/2020, 7:00 PM
Is it expected behaviour for the default commonTest configuration to use the
cleanIosX64Test iosX64Test
tasks? Both my own project and the
kmm-sample-master
use these tasks. The feedback from evaluating expressions isn’t as reliable when debugging as a result.
k

Kris Wong

09/01/2020, 7:44 PM
my understanding is that the KMM plugin currently only runs common tests on iOS
r

russhwolf

09/01/2020, 7:59 PM
k

kelvinharron

09/01/2020, 8:04 PM
Thanks @Kris Wong and @russhwolf that’s exactly what I was looking for. 🙂 Looks as expected unfortunately
r

russhwolf

09/01/2020, 8:05 PM
You can change it to
cleanAllTests allTests
if you want to run both
or
testDebugUnitTest
to run Android tests but it doesn't have a corresponding clean task
3 Views