Currently I have two separate scripts:
"p1_testRail": "cypress run -r cypress-testrail-accumulative-reporter {arguments} {test_suites} --headless"
"p1_mochawesome": "cypress run -r cypress-multi-reporters {arguments} {test_suites} --reporter mochawesome"
But I want to be able to run a single cypress script and get the report generated for both testrail and mochawesome. Do we have any way to be able to pass multiple arguments for a --reporter & -r?
NOTE: && would still run it one after another. That means, test suite will run twice. Instead, I want to run test suite once and update both the reporters at the same time.