During testing: in one of my composables I have `v...
# compose
z
During testing: in one of my composables I have
val 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
.