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?
sean
02/12/2020, 2:26 AM
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
}
}