Framework Mode - Test naming conventions
Folder Structure for Cypress Test Project
cypress/
├── e2e/ # Test files organized by feature or module
│ ├── login.cy.js # Login feature tests
│ ├── dashboard.cy.js # Dashboard feature tests
│ └── userProfile.cy.js # User profile tests
├── fixtures/ # Test data files (JSON, etc.)
│ └── users.json
├── support/ # Support files for commands and utilities
│ ├── commands.js # Custom Cypress commands
│ └── index.js # Support file loaded before tests
└── plugins/ # Plugins for Cypress
└── index.js
cypress.config.js # Cypress configuration file
package.json # Project dependencies and scripts