cypress.config.js 363 B

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