I am trying to integrate cypress resporting with report portal and mochawaesome. The goal is to get both reports. I have tried this in the
cypress.json
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome, @reportportal/agent-js-cypress",
"mochawesomeReporterOptions": {
"reportDir": "cypress/reports/mocha",
"quite": true,
"overwrite": false,
"html": false,
"json": true
},
"reportPortalReporterOptions": {
"endpoint": "abc",
"token": "123",
"launch": "launcher",
"project": "project-name",
"autoMerge": true,
"description": "QA"
}
}
it doesnt work. Is there another way to integrate 2 reporting tools together in cypress