diff --git a/build.gradle b/build.gradle index 84867b4dad..1e47f88a68 100644 --- a/build.gradle +++ b/build.gradle @@ -18,6 +18,17 @@ plugins { id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version" apply false } +// temporal crutch until legacy tests will be stabled or legacy target will be removed +allprojects { + if (it != rootProject.findProject("docs")) { + tasks.whenTaskAdded { task -> + if(task.name == "jsLegacyBrowserTest" || task.name == "jsLegacyNodeTest") { + task.enabled = false + } + } + } +} + private String getCurrentVersionChangelog() { OutputStream changelogDataOS = new ByteArrayOutputStream() exec {