UNPKG

cypress-mochawesome-reporter

Version:

Zero config Mochawesome reporter for Cypress with screenshots

12 lines (9 loc) 254 B
const { beforeRunHook, afterRunHook } = require('./lib'); module.exports = function (on) { on('before:run', async (details) => { await beforeRunHook(details); }); on('after:run', async (results) => { await afterRunHook(results); }); };