`1. I have configured mochawesome depandencies and now my package.json has following
- "mocha": "^8.3.0", "mochawesome": "^6.2.1", "mochawesome-merge": "^4.2.0", "mochawesome-report-generator": "^5.2.0"
- After test execution , i could able to merge the separate json reports in a folder using command
"npx mochawesome-merge Test/cypress/reports/mocha/*.json > test/cypress/reports/mochareports/report.json"
- Now to prepare the html report from merged json, when i am trying to execute below command
"npx marge test/cypress/reports/mochareports/report.json --reportDir ./ --inline"
getting error as 'command not found: marge'
Could any one please let me know, what exactly i am doing wrong here`