A CodeceptJS helper for reporting test execution results to a centralized dashboard.
QA-Reporter is a powerful CodeceptJS helper that automatically captures and reports test execution results to a centralized dashboard. It provides real-time insights into your test runs, including detailed execution metrics, environment information, and test status.
npm install qa-reporter
Add to your `codecept.conf.js`:
```javascript
exports.config = {
helpers: {
GHReporter: {
require: './src/GHReporter.ts',
apiConfig: {
apiKey: 'YOUR_API_KEY'
}
}
}
}