Skip to content

Commit

Permalink
Fix the Wasm integration tests and enable it for K2 (#3641)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev authored Jun 4, 2024
1 parent 5ee7a67 commit 740b41b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 1,5 @@
@file:Suppress("unused")

import org.w3c.dom.HTMLAnchorElement
import kotlinx.coroutines.CoroutineScope

/**
Expand All @@ -16,9 15,6 @@ fun test(list: MutableList<Int>) = "list"
@JsNonModule
external fun <T> sorted(a: Array<T>): Boolean

// this declaration can be used to check deserialization of dynamic type
external interface TextLinkProps: AnchorHTMLAttributes<HTMLAnchorElement>

// this declaration uses external library and external documentation link
fun CoroutineScope.externalClass() = "some string"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 1,5 @@
@file:Suppress("unused")

import org.w3c.dom.HTMLAnchorElement
import kotlinx.coroutines.CoroutineScope

/**
Expand All @@ -16,9 15,6 @@ fun test(list: MutableList<Int>) = "list"
@JsNonModule
external fun <T> sorted(a: Array<T>): Boolean

// this declaration can be used to check deserialization of dynamic type
external interface TextLinkProps: AnchorHTMLAttributes<HTMLAnchorElement>

// this declaration uses external library and external documentation link
fun CoroutineScope.externalClass() = "some string"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 28,6 @@ internal class WasmTestedVersionsArgumentsProvider : AllSupportedTestedVersionsA

class WasmGradleIntegrationTest : AbstractGradleIntegrationTest() {

@OnlyDescriptors
@ParameterizedTest(name = "{0}")
@ArgumentsSource(WasmTestedVersionsArgumentsProvider::class)
fun execute(buildVersions: BuildVersions) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 27,6 @@ internal class WasmJsWasiTestedVersionsArgumentsProvider : AllSupportedTestedVer

class WasmJsWasiGradleIntegrationTest : AbstractGradleIntegrationTest() {

@OnlyDescriptors
@ParameterizedTest(name = "{0}")
@ArgumentsSource(WasmJsWasiTestedVersionsArgumentsProvider::class)
fun execute(buildVersions: BuildVersions) {
Expand Down

0 comments on commit 740b41b

Please sign in to comment.