rocketraman
04/29/2022, 1:14 PMtest
task does not execute the frontendTest
task by default, when the jvm
target declares the following, only the jvm tests are run by the test
task:
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
If I add tasks.getByName("test").dependsOn("frontendTest")
to the build explicitly, both sets of tests are run, but I woudn't think this should be necessary. Kotlin 1.6.10. Is this a known bug?