[WASM] Bump wasm gradle tests and ignore binaryen tests

This commit is contained in:
Igor Yakovlev
2022-09-14 14:04:35 +02:00
committed by teamcity
parent 38dd68f1f4
commit e2d758213f
2 changed files with 8 additions and 0 deletions
@@ -29,6 +29,7 @@ import org.jetbrains.kotlin.konan.target.HostManager
import org.jetbrains.kotlin.library.KLIB_PROPERTY_SHORT_NAME
import org.jetbrains.kotlin.library.KLIB_PROPERTY_UNIQUE_NAME
import org.junit.Assert
import org.junit.Ignore
import org.junit.Test
import java.util.*
import java.util.jar.JarFile
@@ -2001,15 +2002,18 @@ class NewMultiplatformIT : BaseGradleIT() {
}
@Test
@Ignore
fun testWasmNodeTest() = testWasmTest("nodejs", "Node", useBinaryen = false)
@Test
@Ignore
fun testWasmWithBinaryenNodeTest() = testWasmTest("nodejs", "Node", useBinaryen = true)
@Test
fun testWasmD8Test() = testWasmTest("d8", "D8", useBinaryen = false)
@Test
@Ignore
fun testWasmWithBinaryenD8Test() = testWasmTest("d8", "D8", useBinaryen = true)
@Test
@@ -13,6 +13,10 @@ with(org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin.apply(rootPr
nodeDownloadBaseUrl = "https://nodejs.org/download/nightly/"
}
with(org.jetbrains.kotlin.gradle.targets.js.d8.D8RootPlugin.apply(rootProject)) {
version = "10.7.157"
}
with(org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin.apply(rootProject)) {
//A little hacky way to disable yarn for unsupported nightly node version
command = "echo"