having a lot of fun with Robolectric and JC with a...
# compose
c
having a lot of fun with Robolectric and JC with animations. Some of my tests that exercise things like
AnimatedVisibility
will end up executing the entire test (👍), but the test will not actually finish (👎) throwing an
AppNotIdleException
from the
RobolectricIdlingStrategy
class. I've managed to get some of my (previously connected) tests passing by manipulating the
mainClock
via the compose test rule, but it's making a lot of things more difficult. Is there anyway for me to forcibly stop any queued animations, which I'm assuming is locking the test?