Cypress error CypressError: cy.wait() timed out waiting for the 1st request to the route: `@getUsers`. No request ever occurred.
The alias cy.wait() is looking for never fired, so check for a typo between the intercept and the wait, or a request-order race.
Why this happens
- Alias name mismatch between `cy.intercept(...).as('name')` and `cy.wait('@name')`
- The intercept was registered after the page's request already fired
How to fix it
- Move `cy.intercept()` calls into a `beforeEach`, or place them immediately before `cy.visit()` and the triggering action
- Double-check the alias string spelling matches exactly on both ends