Is there a test rule that waits for a manual fonct...
# compose
l
Is there a test rule that waits for a manual fonction call before launching the Activity? I have something like:
Copy code
@get:Rule
val activityRule = createAndroidComposeRule<SplashScreenActivity>()
But I have some individual setup for each test to do before the activity is launched. So I would like to, in my
@Test
function, do some initialization, launch the test, and then perform clicks, assertions, etc.