Skip to content

Commit

Permalink
Turn WasmGradleIntegrationTest off for Kotlin 1.9.20-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Oct 30, 2023
1 parent 55dfa07 commit 676660e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
kotlin {
wasm()
sourceSets {
val wasmJsMain by getting {
val wasmMain 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 @@ -20,7 +20,8 @@ internal class WasmTestedVersionsArgumentsProvider : AllSupportedTestedVersionsA
override fun provideArguments(context: ExtensionContext?): Stream<out Arguments> {
return super.provideArguments(context).filter {
val buildVersions = it.get().single() as BuildVersions
buildVersions.kotlinVersion >= "1.8.20" // 1.8.20 is the first public version that can be tested with wasm
buildVersions.kotlinVersion >= "1.8.20" && // 1.8.20 is the first public version that can be tested with wasm
buildVersions.kotlinVersion <= "1.9.10"// in 1.9.20 wasm target was split into `wasm-js` and `wasm-wasi`
}
}
}
Expand Down

0 comments on commit 676660e

Please sign in to comment.