```runBlocking { while (true) { someLi...
# coroutines
t
Copy code
runBlocking {
    while (true) {
        someList.forEach {
            launch { someFunction(it) }
        }
        delay(1000)
    }
}
Hi guys, I got a problem, I can not test whether the someFunction is going to run in multiple coroutines, is any way how to do it?