Add Gradle task to run JS tests without DCE

This should be helpful when frequently testing changes in JS BE.
This commit is contained in:
Alexey Andreev
2017-09-26 17:22:51 +03:00
parent c0a83c3c8a
commit 3b5c2bbcaa
+5
View File
@@ -44,3 +44,8 @@ projectTest {
testsJar {}
projectTest("quickTest") {
dependsOn(*testDistProjects.map { "$it:dist" }.toTypedArray())
workingDir = rootDir
systemProperty("kotlin.js.skipMinificationTest", "true")
}