Skip to content
This repository was archived by the owner on Nov 30, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("multiplatform")
kotlin("plugin.serialization")
id("io.kotest") version "6.0.4"
id("io.kotest") version "6.0.5"
id("com.google.devtools.ksp") version "2.3.3"
}

Expand Down Expand Up @@ -89,8 +89,8 @@ kotlin {

commonTest {
dependencies {
implementation("io.kotest:kotest-assertions-core:6.0.4")
implementation("io.kotest:kotest-framework-engine:6.0.4")
implementation("io.kotest:kotest-assertions-core:6.0.5")
implementation("io.kotest:kotest-framework-engine:6.0.5")
// Overriding coroutines' version to solve a problem with WASM JS tests.
// See https://kotlinlang.slack.com/archives/CDFP59223/p1736191408326039?thread_ts=1734964013.996149&cid=CDFP59223
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
Expand All @@ -99,7 +99,7 @@ kotlin {

jvmTest {
dependencies {
implementation("io.kotest:kotest-runner-junit5:6.0.4")
implementation("io.kotest:kotest-runner-junit5:6.0.5")
}
}
}
Expand Down
Loading