Robolectric Test Looping without getting finish

51 views Asked by At

I'm trying to do integration test with robolectric and hilt testing, and when i add this block on gradle and set max sdk into 33, the test just looping without and end.

testOptions {
  unitTests {
    includeAndroidResources = true
  }
}

Robolectric Annotation:

@RunWith(RobolectricTestRunner::class)
@Config(application = HiltTestApplication::class, manifest = Config.NONE, maxSdk = 33)
0

There are 0 answers