From da33768aa253827acff33c5cae47167bea92c46a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 02:28:23 +0000 Subject: [PATCH] deps(internal): update kotest to v6.0.5 --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 82adb7d8..9ad16213 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" } @@ -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") @@ -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") } } }