Framework Mode - cypress-testing-library
Folder Structure
cypress-testing-library-project/ ├── cypress/ │ ├── e2e/ # Test specs using Cypress Testing Library │ │ ├── login.cy.js # Example test file │ │ └── dashboard.cy.js │ ├── support/ # Support commands and setup │ │ ├── commands.js # Custom Cypress commands │ │ └── e2e.js # Global setup for tests │ └── fixtures/ # Test data files (JSON, etc.) ├── cypress.config.js # Cypress configuration file ├── package.json # Project dependencies and scripts └── README.md