How do I run tests that are present inside `common...
# multiplatform
r
How do I run tests that are present inside
commonTest
?
s
Heard they should run automatically when you run tests for any platform
👌 1
g
To run common tests you have to build and run them for particular platform
r
Oh ok, I thought I could start them and they will automatically start on each platform
r
Some platforms (JVM, Android, Native that isn't cross-compiled) will generally be set up automatically, but others require manual configuration
d
I usually run them with the gradle
check
task. I'm only targeting iOS and Android and usually get a result that is twice the number of test I write in commontest