We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d0caa commit f9ac842Copy full SHA for f9ac842
rsocket-transport-tests/src/commonMain/kotlin/io/rsocket/kotlin/transport/tests/TransportTest.kt
@@ -62,6 +62,7 @@ abstract class TransportTest : SuspendTest {
62
@Test
63
fun fireAndForget10() = test {
64
(1..10).map { async { client.fireAndForget(payload(it)) } }.awaitAll()
65
+ delay(500) // TODO
66
}
67
68
@@ -203,6 +204,7 @@ abstract class TransportTest : SuspendTest {
203
204
205
.count()
206
assertEquals(500, count)
207
208
209
210
@@ -262,6 +264,7 @@ abstract class TransportTest : SuspendTest {
262
264
.onEach { checkPayload(it) }
263
265
266
267
268
269
270
companion object {
0 commit comments