cypress.config.ts 186 B

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