Well this is weird, I'm using coroutines test libr...
# coroutines
z
Well this is weird, I'm using coroutines test library and its just ignoring my delay call
Copy code
@Test
fun testNodeMap() = runTest {
    print("Hello ")
    delay(50000)
    println("world!")
}
It completes instantly