Espresso tests not running in android studio

Viewed 918

I'm making some espresso tests for my application in android studio , it was working and suddently stopped working , basically the test builds and starts but it gets stuck in test results and show nothings , i mean it shows no tests passing . if someone could help i will appreciate it , Thank you

  • This is a screenshot from my android studio ( it shows launch succeded but tests dont start)

enter image description here

2 Answers

Downgrading helped me:

androidx.test.espresso:espresso-core:3.4.0 -> 3.3.0

androidx.test.espresso:espresso-contrib:3.4.0 -> 3.3.0

Same thing with Kaspresso 1.4.0, downgrading to 1.3.0 helps

Related