Zoltan Demant
07/14/2025, 4:31 PMval scope = rememberCoroutineScope()
and If I log scope.coroutineContext[CoroutineDispatcher]
I can see that its a ~_FlushingDispatcher_
But later on when I do scope.launch { .. }
and check, suddenly the thread being used is: DefaultDispatcher-worker-5 @coroutine#238
Can anyone explain? The tests are being run on the JVM with runSkikoComposeUiTest
.