Framework Mode - Props and event testing
Folder Structure
cypress/
├── e2e/ # Test specs for end-to-end and component tests
│ ├── components/ # Component tests focusing on props and events
│ │ └── Button.cy.js # Example test for a Button component
│ └── pages/ # Page-level tests
├── fixtures/ # Static test data (JSON files)
├── support/ # Custom commands and utilities
│ ├── commands.js # Custom Cypress commands
│ └── index.js # Support file loaded before tests
├── plugins/ # Cypress plugins if needed
└── cypress.config.js # Main Cypress configuration file