https://kotlinlang.org logo
r

Robert Jaros

12/18/2020, 11:14 PM
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

russhwolf

12/19/2020, 12:44 AM
You can also do
allTests
which is a subset of
check
and just runs tests without other things like linters.
👍 2
4 Views