I’m attempting to use a `TestCoroutineScope` to co...
# coroutines
z
I’m attempting to use a
TestCoroutineScope
to control when an
actor
coroutine processes messages. I did the following: 1. Constructed
actor
with
TestCoroutineScope
via
runBlockingTest { .. }
2. used
testCoroutineScope.pauseDispatcher()
3. called
actor.send(message)
And without ever calling
pauseDispatcher()
, the
actor
receives and processes the
message
. Is this intentional?
had to add a
delay(1)
in the places where I wanted to pause dispatching. Weird. Luckily, I was able to do this in my production code (not test code)