UNPKG

cypress-testrail-paper

Version:

Easy and decoupled Cypress TestRail reporter

14 lines (10 loc) 300 B
const {defineConfig} = require("cypress"); module.exports = defineConfig({ e2e: { setupNodeEvents(on, config) { const TestRailReporter = require('../../src/../index'); new TestRailReporter(on, config).register(); return config }, }, });