Cypress error AssertionError: Timed out retrying after 4000ms: expected false to be true
A generic retried assertion never became true in time. The real condition is whatever's asserted just above this line in the command log.
Why this happens
- The app state genuinely never reaches the expected condition within the retry window
How to fix it
- Check the command log entry directly above the failure; that's the actual assertion that failed, not this generic message
- Confirm your test setup/data actually produces the state you're asserting on