I'm trying to debug some JVM code that uses Ktor's...
# coroutines
e
I'm trying to debug some JVM code that uses Ktor's TCP socket in a test context (
commonTest
).
Copy code
override suspend fun s_connect(host: String, port: Int): ZServerProperties {
  selectorManager = SelectorManager(<http://Dispatchers.IO|Dispatchers.IO>)
  val tcp = aSocket(selectorManager).tcp()
  socket = tcp.connect(host, port) {
    noDelay = true
    keepAlive = true
    socketTimeout = 10000
  }
  ...
As soon as the debugger steps over
tcp.connect
(F8 key) the entire debug process simply dies and tests are marked as passed. Anyone ever got the same issue?