1
0

cypress.config.ts 443 B

123456789101112131415
  1. import { defineConfig } from 'cypress'
  2. export default defineConfig({
  3. projectId: 'k83u7j',
  4. scrollBehavior: 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. specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
  12. experimentalRunAllSpecs: true,
  13. },
  14. })