Hey has anyone run into a issue where espresso tes...
# android
r
Hey has anyone run into a issue where espresso tests freeze when converted to kotlin?
d
it happened to me too 😄 try using
@UiThreadTest
or try running your test inside
runBlocking { }
r
cool thanks will try
you should use a idlingResource, instead