aboutsummaryrefslogtreecommitdiff
path: root/cypress.config.ts
blob: 1b118e7dbadcf1b077478e2801c29d39b7062ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from 'cypress';

export default defineConfig({
  video: false,
  e2e: {
    chromeWebSecurity: false,
    baseUrl: 'http://localhost:5173',
    supportFile: false,
    fixturesFolder: false,
  },
});