Join Slack
Powered by
I have a kotlin multiplatform project with jvm and...
# multiplatform
a
audax
08/27/2020, 2:24 PM
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
basher
08/27/2020, 2:46 PM
should be enough to just do this in your build.gradle.kts:
Copy code
tasks.withType<KotlinTest>().configureEach { reports.junitXml.isEnabled = true }
19
Views
Open in Slack
Previous
Next