Espresso: Anybody knows a way to have `UiControlle...
# android
m
Espresso: Anybody knows a way to have
UiController.loopMainThreadUntilIdle()
or equivalent called directly? I do mockito verifications after swipe and it starts checking too early. If I put a random action like
click()
on anything before verify calls, it works, because
perform(click())
calls
loopMainThreadUntilIdle
.