I'm using mochawesome report to capture my cypress execution. The test case shows simply pass and didn't find the steps that it gone through and assertion that is added as part of that test in the report.
Sample snapshot (Sorry for too many strike):
I'm very new to cypress and mocha world, and I would like to see all the action that has been done in that test. Like I can see very clear details in the cypress.open. How can I get all the such information as part of mochawesome report? Is there any centralized (support/index.js or plugin/index.js file) place to make this changes that will replicate everywhere in the program.
Expected:
Expected all the Actions should be captured as part of mochawesome report as like below sample:
It contains click() action status and submit action status in the report for that test case. and type() failed so that it will be very easy to debug the failures.