Nodejs unit test email notifications on failure

Viewed 159

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?

1 Answers

@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.

Send email with html attachment

Related