From 4a17047affe196310c57d9475061fa4104f83fa0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 20 May 2025 03:26:23 +0000 Subject: [PATCH] deps(internal): update kotest to v6.0.0.m4 --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 70a12ff9..0e885f89 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -90,9 +90,9 @@ kotlin { commonTest { dependencies { - implementation("io.kotest:kotest-assertions-core:6.0.0.M1") + implementation("io.kotest:kotest-assertions-core:6.0.0.M4") implementation("io.kotest:kotest-framework-api:6.0.0.M1") - implementation("io.kotest:kotest-framework-engine:6.0.0.M1") + implementation("io.kotest:kotest-framework-engine:6.0.0.M4") // 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") @@ -101,7 +101,7 @@ kotlin { jvmTest { dependencies { - implementation("io.kotest:kotest-runner-junit5:6.0.0.M1") + implementation("io.kotest:kotest-runner-junit5:6.0.0.M4") } } }