Does anyone know if the main clock is shared among...
# compose
m
Does anyone know if the main clock is shared amongst tests?
Copy code
@get:Rule
val composeTestRule = createComposeRule().apply { mainClock.autoAdvance = false }
We have a ton of flakiness in our tests when runs as an entire suite, and i'm wondering if this could be why. If the clock is shared, it could be left in a bad state (not auto advancing) for subsequent tests.