Make project wizards produce kotlin-test-js testDependency in all Kotlin/JS projects

This commit is contained in:
Anton Bannykh
2017-12-11 16:23:37 +03:00
parent 3c98274006
commit 0566366895
@@ -134,6 +134,8 @@ open class GradleKotlinJSFrameworkSupportProvider(frameworkTypeId: String = "KOT
override fun getDependencies(sdk: Sdk?) = listOf(MAVEN_JS_STDLIB_ID)
override fun getTestDependencies() = listOf(MAVEN_JS_TEST_ID)
override fun getDescription() = "A Kotlin library or application targeting JavaScript"
}
@@ -160,5 +162,4 @@ class GradleKotlinMPPJSFrameworkSupportProvider
override fun getPluginId() = "kotlin-platform-js"
override fun getDescription() = "JavaScript-specific code for a Kotlin multiplatform project"
override fun getTestDependencies() = listOf(MAVEN_JS_TEST_ID)
}