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)