cypress.config.ts 180 B

12345678
  1. import { defineConfig } from 'cypress'
  2. export default defineConfig({
  3. e2e: {
  4. specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,ts}',
  5. baseUrl: 'http://localhost:4173',
  6. },
  7. })