Framework Mode - Test reporting in pipelines
Folder Structure of a Test Project with Reporting in Pipelines
test-project/ ├── tests/ # Test cases organized by feature or module │ ├── login.test.js │ ├── cart.test.js │ └── checkout.test.js ├── reports/ # Generated test reports (HTML, JSON, XML) │ └── latest-report.html ├── config/ # Configuration files for environments and test settings │ └── config.json ├── utils/ # Helper functions and utilities │ └── logger.js ├── ci/ # CI pipeline scripts and configs │ └── pipeline.yml ├── package.json # Project dependencies and scripts └── README.md # Project overview and instructions