Framework Mode - it blocks for test cases
Folder Structure of a Cypress Test Project
cypress/ ├── e2e/ # Test case files with 'it' blocks │ ├── login.cy.js # Example test file │ ├── dashboard.cy.js │ └── userProfile.cy.js ├── fixtures/ # Test data files (JSON, etc.) ├── support/ # Custom commands and reusable code │ ├── commands.js # Custom Cypress commands │ └── e2e.js # Global setup for tests cypress.config.js # Cypress configuration file package.json # Project dependencies and scripts