I have a kotlin multiplatform project with jvm and...
# multiplatform
a
I have a kotlin multiplatform project with jvm and js targets. How do I build junit-xml test reports for my js and jvm tests?
b
should be enough to just do this in your build.gradle.kts:
Copy code
tasks.withType<KotlinTest>().configureEach {
    reports.junitXml.isEnabled = true
}