Hi all! I can't manage to run kotest with Kotlin 1...
# kotest
g
Hi all! I can't manage to run kotest with Kotlin 1.4 even on a new project. I'm using this build.gradle.kts:
Copy code
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
    kotlin("jvm") version "1.4.10"
}
group = "me.gilles"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}
dependencies {
    testImplementation("io.kotest:kotest-runner-junit5:4.2.+")
    testImplementation("io.kotest:kotest-property:4.2.+")
    testImplementation("io.kotest:kotest-core:4.2.+")
}

tasks.withType<KotlinCompile>() {
    kotlinOptions.jvmTarget = "1.8"
}

tasks.withType<Test> {
    useJUnitPlatform()
}
and obtain this stacktrace: