if I use `runBlockingTest`, will it execute corout...
# coroutines
f
if I use
runBlockingTest
, will it execute coroutines launched within it sequentially? (as if I called
join
on them)
a
yes
g
Only if test dispatcher is used (so something like launch(IO) will not work)
f
I didn't know that
I'm not passing a dispatcher at all since they call Room functions