Any way to run all the tests from all the platform...
# multiplatform
f
Any way to run all the tests from all the platforms at once? When I try to do an
app -> Run all tests
there are no tests founds. I need to run individually the folders of each platform and on iOS case I need to run the gradle script for it. Any idea about how to unify this?
s
I always just use gradle to run all tests at once
2
f
@Sam Schilling do you have an specific script for it? Because iOS runs on a different way on multiplataform projects(or maybe my project is not well configured. Could you share the script or how u have it configure? Thx so much!
s
can you share the verification tasks you see when you run
gradle tasks --all
?
a
I always use "check" task to run tests for all platforms, or "testXxx" to run tests for a specific platform.