I'm probably missing it in the docs. But is there ...
# gradle
s
I'm probably missing it in the docs. But is there a way to get xml reports from kotlin multiplatform tests? I have an html output, but am trying to get xml for CI/CD?
Answering myself, for jvm at least. Still wondeirng native and js
Copy code
tasks {
    val jvmTest by getting(org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest::class) {
        this.useJUnit()
        this.reports.junitXml.isEnabled = true
    }
}