Decrease SendReceiveStressTest constant for JS on Windows
diff --git a/common/kotlinx-coroutines-core-common/test/channels/SendReceiveStressTest.kt b/common/kotlinx-coroutines-core-common/test/channels/SendReceiveStressTest.kt
index 8e9abc8..698a5e7 100644
--- a/common/kotlinx-coroutines-core-common/test/channels/SendReceiveStressTest.kt
+++ b/common/kotlinx-coroutines-core-common/test/channels/SendReceiveStressTest.kt
@@ -28,7 +28,7 @@
     }
 
     private suspend fun testStress(channel: Channel<Int>) {
-        val n = 1_000 // Do not increase, otherwise node.js will fail with timeout :(
+        val n = 100 // Do not increase, otherwise node.js will fail with timeout :(
         val sender = launch(coroutineContext) {
             for (i in 1..n) {
                 channel.send(i)