cypress.config.ts 190 B

123456789
  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. });