diff --git a/gradle/templates/mppComposeJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle b/gradle/templates/mppComposeJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle index f6bfef2b2e0..9c7873cb00c 100644 --- a/gradle/templates/mppComposeJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle +++ b/gradle/templates/mppComposeJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle @@ -38,7 +38,9 @@ kotlin { } nodejs { testTask { - enabled = false + timeout = Duration.ofSeconds(240) + nodeJsArgs.add("--unhandled-rejections=warn") + nodeJsArgs.add("--trace-warnings") } } } diff --git a/gradle/templates/mppJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle b/gradle/templates/mppJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle index 236d1ff0235..269241694d2 100644 --- a/gradle/templates/mppJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle +++ b/gradle/templates/mppJvmJsWasmJsAndroidLinuxMingwLinuxArm64Project.gradle @@ -38,7 +38,9 @@ kotlin { } nodejs { testTask { - enabled = false + timeout = Duration.ofSeconds(240) + nodeJsArgs.add("--unhandled-rejections=warn") + nodeJsArgs.add("--trace-warnings") } } } diff --git a/gradle/templates/mppJvmJsWasmJsLinuxMingwProject.gradle b/gradle/templates/mppJvmJsWasmJsLinuxMingwProject.gradle index 50f19cb734f..cfe86191061 100644 --- a/gradle/templates/mppJvmJsWasmJsLinuxMingwProject.gradle +++ b/gradle/templates/mppJvmJsWasmJsLinuxMingwProject.gradle @@ -38,7 +38,9 @@ kotlin { } nodejs { testTask { - enabled = false + timeout = Duration.ofSeconds(240) + nodeJsArgs.add("--unhandled-rejections=warn") + nodeJsArgs.add("--trace-warnings") } } } diff --git a/gradle/templates/mppProjectWithSerializationAndCompose.gradle b/gradle/templates/mppProjectWithSerializationAndCompose.gradle index 538e0de749e..df9b6b3ccf7 100644 --- a/gradle/templates/mppProjectWithSerializationAndCompose.gradle +++ b/gradle/templates/mppProjectWithSerializationAndCompose.gradle @@ -38,7 +38,9 @@ kotlin { } nodejs { testTask { - enabled = false + timeout = Duration.ofSeconds(240) + nodeJsArgs.add("--unhandled-rejections=warn") + nodeJsArgs.add("--trace-warnings") } } }