Hendre Page
10/22/2024, 2:40 PMgradle allTests
tries to run browser based tests which is failing for my current code and gradle jvmTest
does not run all my tests)Christian Würthenr
10/22/2024, 2:41 PMjs(IR) {
browser {
testTask {
enabled = false
}
}
}
Matt Nelson
10/22/2024, 2:45 PM./gradlew clean && ./gradlew build jvmTest --no-build-cache
ephemient
10/22/2024, 2:50 PMgradle jvmTest
should run all the jvm parts of your your multiplatform tests. do you nave non-multiplatform modules?Hans van Dodewaard
10/22/2024, 5:10 PMtest
task for those modules. Use --rerun-tasks
to run all the tests, even when they are up-to-date (but this will also recompile all your modules):
./gradlew jvmTest test --rerun-tasks