Framework Mode - Continuous testing in CI/CD
Folder Structure
project-root/ ├── src/ # Application source code ├── tests/ # Automated tests │ ├── unit/ # Unit tests │ ├── integration/ # Integration tests │ ├── e2e/ # End-to-end tests │ └── fixtures/ # Test data and mocks ├── ci/ # CI/CD pipeline scripts and configs ├── config/ # Environment and test configurations │ ├── dev.env # Development environment variables │ ├── staging.env # Staging environment variables │ └── prod.env # Production environment variables ├── reports/ # Test reports and logs ├── utils/ # Helper functions and utilities ├── package.json # Project dependencies and scripts (example for JS) └── README.md # Project documentation