cypress.config.js 351 B

12345678910111213
  1. const { defineConfig } = require('cypress')
  2. module.exports = defineConfig({
  3. video: false,
  4. screenshot: false,
  5. e2e: {
  6. // We've imported your old cypress plugins here.
  7. // You may want to clean this up later by importing these.
  8. setupNodeEvents(on, config) {
  9. return require('./cypress/plugins/index.js')(on, config)
  10. },
  11. },
  12. })