Can you use `AndroidComposeTestRule` for end-to-en...
# compose
v
Can you use
AndroidComposeTestRule
for end-to-end tests that work through multiple activities?
👀 1
d
Hmm, I honestly don't know how multiple activities work in these kinds of tests.
One way I might handle this is to verify the intent to open the next activity was sent. Then I would write a whole new test suite for the next activity and run it separately but with a predetermined intent as an input.
v
Hmm. That's unfortunate when it comes to converting existing tests that test a flow
d