Files
planterette/buildSrc/src/main/kotlin/kotlin-jvm.gradle.kts

16 lines
301 B
Kotlin

package buildsrc.convention
import org.gradle.api.tasks.testing.logging.TestLogEvent
tasks.withType<Test>().configureEach {
useJUnitPlatform()
testLogging {
events(
TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED
)
}
}