Upgrade JUnit for Kotlin, add kotlinx.test

This commit is contained in:
Duncan McGregor 2025-04-14 12:52:08 +01:00
parent fcd540f80d
commit 8e26832f59

View File

@ -14,7 +14,8 @@ repositories {
dependencies {
implementation(kotlin("stdlib"))
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.12.2")
}
tasks.test {