summaryrefslogtreecommitdiff
path: root/cypress.config.ts
blob: ef48d11ebd0139fe6ab469edbfb236711ed784e2 (plain)
1
2
3
4
5
6
7
8
import { defineConfig } from "cypress";

export default defineConfig({
  e2e: {
    specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
    baseUrl: "http://localhost:4173",
  },
});