Skip to content
Snippets Groups Projects
cypress.config.js.twig 229 B
Newer Older
const { defineConfig } = require('cypress')

module.exports = defineConfig({
  e2e: {
    video: false,
    watchForFileChanges: false,
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
  }
})