[JS IR] temporarily disable .ts compilation for tests

Current task crashes on Windows.
This commit is contained in:
Anton Bannykh
2021-11-30 16:19:02 +03:00
committed by TeamCityServer
parent 8a7d86c4e5
commit 1696628b5e
+5 -4
View File
@@ -205,9 +205,10 @@ fun Test.setUpJsBoxTests(jsEnabled: Boolean, jsIrEnabled: Boolean) {
dependsOn(":dist")
if (!project.hasProperty("teamcity")) {
dependsOn(generateTypeScriptTests)
}
// TODO uncomment after fixing on Windows
// if (!project.hasProperty("teamcity")) {
// dependsOn(generateTypeScriptTests)
// }
if (jsEnabled) {
dependsOn(testJsRuntime)
@@ -360,4 +361,4 @@ projectTest("invalidationTest", jUnitMode = JUnitMode.JUnit4) {
dependsOn(":kotlin-stdlib-js-ir:compileKotlinJs")
systemProperty("kotlin.js.stdlib.klib.path", "libraries/stdlib/js-ir/build/libs/kotlin-stdlib-js-ir-js-$version.klib")
}
}