Is it possible to test coroutines with parallel ex...
# coroutines
j
Is it possible to test coroutines with parallel execution?
c
Sure, you can launch async jobs and join them within a
runBlocking
block.
Copy code
fun test() = runBlocking {
    val job = GlobalScope.launch {
        delay(2500)
    }

    job.join()
}
j
Really I am trying to ron every test in parallel