Skip to content

Commit

Permalink
Merge pull request #461 from charleskorn/renovate/kotest
Browse files Browse the repository at this point in the history
Update Kotest to v5.8.0
  • Loading branch information
charleskorn committed Dec 10, 2023
2 parents 1f48cb7 + 98d971c commit 9d7c47f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 322 deletions.
19 changes: 11 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,15 @@ kotlin {
browser {
testTask {
// TODO: enable once the tests work with Kotlin/JS.
// The main problem noticed so far is that the DescribeSpec isn't supported by Kotlin/JS.
// See https://github.com/kotest/kotest/blob/71c1826e5b404359ad8efe7cd360a2db3af5436b/kotest-framework/kotest-framework-engine/src/commonMain/kotlin/io/kotest/engine/spec/interceptor/IgnoreNestedSpecStylesInterceptor.kt#L47
enabled = false
}
}
nodejs()
nodejs {
testTask {
// TODO: enable once the tests work with Kotlin/JS.
enabled = false
}
}
binaries.executable()
}

Expand All @@ -70,10 +73,10 @@ kotlin {

commonTest {
dependencies {
implementation("io.kotest:kotest-assertions-core:5.6.2")
implementation("io.kotest:kotest-framework-api:5.6.2")
implementation("io.kotest:kotest-framework-engine:5.6.2")
implementation("io.kotest:kotest-framework-datatest:5.6.2")
implementation("io.kotest:kotest-assertions-core:5.8.0")
implementation("io.kotest:kotest-framework-api:5.8.0")
implementation("io.kotest:kotest-framework-engine:5.8.0")
implementation("io.kotest:kotest-framework-datatest:5.8.0")
}
}

Expand All @@ -85,7 +88,7 @@ kotlin {

named("jvmTest") {
dependencies {
implementation("io.kotest:kotest-runner-junit5:5.6.2")
implementation("io.kotest:kotest-runner-junit5:5.8.0")
}
}

Expand Down

0 comments on commit 9d7c47f

Please sign in to comment.