cypress.config.ts 350 B

1234567891011121314
  1. import { defineConfig } from 'cypress'
  2. import vitePreprocessor from 'cypress-vite'
  3. export default defineConfig({
  4. e2e: {
  5. baseUrl: 'http://localhost:3333',
  6. chromeWebSecurity: false,
  7. specPattern: 'cypress/e2e/**/*.spec.*',
  8. supportFile: false,
  9. setupNodeEvents(on) {
  10. on('file:preprocessor', vitePreprocessor())
  11. },
  12. },
  13. })