is there a "right way" to run android unit tests w...
# multiplatform
k
is there a "right way" to run android unit tests when all the tests are in commonTest?
running the
test
gradle task works to some degree, but w/o any fancy IDE integration
check
works, per https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#running-tests. however, there's no
androidTest
task
b
testDebugUnitTest is what we do
k
that stopped working for me, but it did work for a while
i am assuming it was when I switched from JVM to Android
b
It has up-to-date checks, so it might not re-run. Try modifying test file (non whitespace change)
r
There’s a
cleanAllTests
task you can use to force tests to rerun without needing to change anything else
🙌 2