The current recommended way to run tests for MPP i...
# multiplatform
d
The current recommended way to run tests for MPP is to run gradle's
check
tasks which runs all the tests on the targeted platforms. Is there any way to run a single test, or run a single test on just one platform?
t
check
is a meta-task, you can check what is actually triggered by running
./gradlew -m check
d
awesome thx