Is there any definitive solution when using Corout...
# coroutines
a
Is there any definitive solution when using Coroutines with Espresso? I've been reading this issue but I couldn't decide which solution should be the one to go. I tried the IdlingThreadPoolExecutor and using
asCoroutineDispatcher()
but somehow things like
debounce
in
Flow
and
delay
doesn't properly tell Espresso that it's not idle, and the UI matchers stuff still gets executed despite being in the
debounce
period.
2