Is there a way to run android tests using `allTest...
# multiplatform
k
Is there a way to run android tests using
allTests
? It's just running
iosTest
whenever I run it.
a
You can run android tests using
test
task. To run all tests you can use
build
task.
k
Yeah. I'm running them individually. I just wanted to know if I can make
allTests
also run
testDebugUnitTest
.
build
runs everything so I don't want that. I guess I'll make my own task for now
z
i just resort to creating my own tasks in intellij as well, its not great but its not the worst either