Framework Mode - Preserving state between tests
Folder Structure
cypress/ ├── e2e/ # Test specs │ ├── login.cy.js # Login tests │ ├── dashboard.cy.js # Dashboard tests │ └── ... ├── fixtures/ # Test data files (JSON, etc.) │ └── user.json ├── support/ # Support files │ ├── commands.js # Custom commands (e.g., login) │ ├── e2e.js # Global setup for tests │ └── index.js # Support index cypress.config.js # Cypress configuration file