Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Oct 27, 2023
1 parent 061c167 commit bba9690
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ kotlin {
jvm()
linuxX64("linux")
macosX64("macos")
js(BOTH)
js(IR) // Starting with Kotlin 1.9.0, using compiler types LEGACY or BOTH leads to an error.
//TODO Add wasm when kx.coroutines will be supported and published into the main repo
sourceSets {
val commonMain by sourceSets.getting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
kotlin {
wasm()
sourceSets {
val wasmMain by getting {
val wasmJsMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4-wasm1")
implementation("org.jetbrains.kotlinx:atomicfu-wasm:0.18.5-wasm1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal open class AllSupportedTestedVersionsArgumentsProvider : TestedVersions

internal object TestedVersions {

val LATEST = BuildVersions("7.6.2", "1.9.20-RC")
val LATEST = BuildVersions("7.6.2", "1.9.20-RC2")

/**
* All supported Gradle/Kotlin versions, including [LATEST]
Expand Down Expand Up @@ -61,6 +61,7 @@ internal object TestedVersions {
"1.8.20" to "18.2.0-pre.546",
"1.9.0" to "18.2.0-pre.597",
"1.9.10" to "18.2.0-pre.597",
"1.9.20-RC2" to "18.2.0-pre.635",
)
}

Expand Down

0 comments on commit bba9690

Please sign in to comment.