Skip to content

Commit ab5530a

Browse files
committed
Added workaround for KT-57235
1 parent b7b8f54 commit ab5530a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

kotest-javascript/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ kotlin {
2323
jsMain {
2424
dependencies {
2525
implementation(libs.ktor.client.js)
26+
// needed as a workaround for https://youtrack.jetbrains.com/issue/KT-57235
27+
implementation("org.jetbrains.kotlin:kotlinx-atomicfu-runtime:2.1.10")
2628
}
2729
}
2830
jsTest {

kotest-javascript/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
kotlin = "2.1.0"
3-
kotest = "5.9.1"
3+
kotest = "6.0.0.M2"
44
ktor = "2.3.7"
55

66
[libraries]

0 commit comments

Comments
 (0)