Understand the Cypress project folder structure
masterCypress projects typically follow a specific directory structure to organize test data, test files, and global configuration:
fixtures/: Used for storing optional JSON data for mocking and stubbing.e2e/: The directory where actual test files are located.support/: Contains files that run before all tests. This is the recommended location for defining or loading custom commands.