[Gradle, JS] Remove redundant build.gradle modification in test

This commit is contained in:
Ilya Goncharov
2021-11-22 16:23:46 +03:00
committed by TeamCityServer
parent 8255118204
commit ffbf2ea1a5
@@ -1045,16 +1045,6 @@ class GeneralKotlin2JsGradlePluginIT : KGPBaseTest() {
build("checkDownloadedFolder")
build("checkIfLastModifiedNotNow", "--rerun-tasks")
buildGradle.modify {
it + "\n" +
"""
rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().nodeVersion = "unspecified"
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download = false
}
"""
}
}
}