[JS] Remove kotlin-test-js build from JPS

kotlin-test-js is also built by JS IR backend
JS IR backend does not support JPS yet
This commit is contained in:
Svyatoslav Kuzmich
2019-11-14 18:02:56 +03:00
parent c8e5b2f2f8
commit a46e970f47
5 changed files with 17 additions and 11 deletions
+3 -1
View File
@@ -63,7 +63,9 @@ dependencies {
testRuntime(kotlinStdlib())
testJsRuntime(kotlinStdlib("js"))
testJsRuntime(project(":kotlin-test:kotlin-test-js")) // to be sure that kotlin-test-js built before tests runned
if (!kotlinBuildProperties.isInJpsBuildIdeaSync) {
testJsRuntime(project(":kotlin-test:kotlin-test-js")) // to be sure that kotlin-test-js built before tests runned
}
testRuntime(project(":kotlin-reflect"))
testRuntime(project(":kotlin-preloader")) // it's required for ant tests
testRuntime(project(":compiler:backend-common"))