fix junit 5 tests not being run by gradle

This commit is contained in:
Konrad Pozniak 2020-09-30 21:18:14 +02:00
parent be0b164089
commit bc1a88a68d
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ tasks {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
withType<Test> {
useJUnitPlatform()
}
}
dependencies {