[Build] Remove the property to skip JS IR BE tests

It's no longer needed since we going to start building libraries using the new BE,
so we have to be sure that everything works well in releases branches too.
This commit is contained in:
Zalim Bashorov
2019-12-19 01:17:46 +03:00
parent 9557034cf7
commit 9cf1a2b404
-3
View File
@@ -106,9 +106,6 @@ fun Test.setUpJsBoxTests(jsEnabled: Boolean, jsIrEnabled: Boolean) {
if (!jsEnabled && jsIrEnabled) include("org/jetbrains/kotlin/js/test/ir/semantics/*")
jvmArgs("-da:jdk.nashorn.internal.runtime.RecompilableScriptFunctionData") // Disable assertion which fails due to a bug in nashorn (KT-23637)
if (findProperty("kotlin.compiler.js.ir.tests.skip")?.toString()?.toBoolean() == true) {
exclude("org/jetbrains/kotlin/js/test/ir/semantics/*")
}
setUpBoxTests()
}