I have a multiplatform library project where the `...
# multiplatform
r
I have a multiplatform library project where the
test
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:
Copy code
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?