I am trying to run some tests were I don't send an...
# ktor
c
I am trying to run some tests were I don't send anything back and let the test hang inside handleWebSocketConversation
d
You have a timeout here: https://ktor.io/features/websockets.html#installing you I guess it is for the connection I will verify and update the documentation. When reading packets, I bet you can use
withTimeout
from
kotlinx.coroutines
to limit the time you wait for receiving a frame
c
ah ok i'll have a look