I am using mocha, chain, nyc supertest for unit test in my nodejs app. I am able to generate test reports at the end of the run, but is there anyway to send email notifications when a test fails during a test run or email a test report?
I am using mocha, chain, nyc supertest for unit test in my nodejs app. I am able to generate test reports at the end of the run, but is there anyway to send email notifications when a test fails during a test run or email a test report?
@sotn, You can write the mail notification function call inside of after hook, to send the mail with html attachment you can refer to below answer.