cypress.config.js 405 B

1234567891011121314
  1. const { defineConfig } = require('cypress')
  2. module.exports = defineConfig({
  3. projectId: 'hv532c',
  4. video: true,
  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. specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
  12. },
  13. })