Framework Mode - Test configuration per environment
Folder Structure
cypress/ ├── e2e/ # Test specs organized by feature │ ├── login.cy.js │ ├── dashboard.cy.js │ └── ... ├── fixtures/ # Static test data files (JSON) │ └── users.json ├── support/ # Custom commands and global hooks │ ├── commands.js │ └── e2e.js cypress.config.js # Main Cypress configuration file cypress.env.json # Default environment variables .env.development.json # Development environment variables .env.staging.json # Staging environment variables .env.production.json # Production environment variables package.json # Project dependencies and scripts