I have a Kotlin/JS project with Kotlin/MPP subproj...
# multiplatform
r
I have a Kotlin/JS project with Kotlin/MPP subproject (JS/JVM). When I run
./gradlew test
only JS tests are executed from the main project and subprojects. I can run
./gradlew jvmTest
to run JVM tests from the MPP subproject, but how can I run all tests with a single
test
task?
Should I just run
check
task instead of
test
?
I does work correctly with a
check
task.
r
You can also do
allTests
which is a subset of
check
and just runs tests without other things like linters.
👍 2