Framework Mode - beforeEach and afterEach hooks
Folder Structure
cypress/ ├── e2e/ │ ├── login.spec.js # Test files using beforeEach and afterEach hooks │ └── dashboard.spec.js ├── support/ │ ├── commands.js # Custom commands │ └── e2e.js # Global beforeEach/afterEach can be placed here ├── fixtures/ │ └── user.json # Test data cypress.config.js # Configuration file