I would like to use junit 5 to test my jetpack compose project.
A compose test rule is required for setting up the UI and using Testing APIs: (documentation)
@get:Rule
val composeTestRule = createAndroidComposeRule<MyActivity>()
This only works for junit 4. Is there any way to use junit 5 with jetpack compose?
I would like to use junit 5 to test my jetpack compose project.
A compose test rule is required for setting up the UI and using Testing APIs: (documentation)
This only works for junit 4. Is there any way to use junit 5 with jetpack compose?