1.0.1 • Published 1 year ago

cy-tests-reporter v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Cypress Test Scripts Generator

Installation

  npm install cy-tests-reporter --save-dev

Installation using Yarn

  yarn add cy-tests-reporter -D

cypress.config.js

const { defineConfig } = require("cypress");
const exportToExcel = require('cy-tests-reporter')

module.exports = defineConfig({
  e2e: {
    setupNodeEvents(on, config) {

         on('after:run', async (results) => {
            await exportToExcel()
         })
      
    },
  }
});
1.0.1

1 year ago

1.0.0

1 year ago