blob: c427b0320143fe8b451f8dcc9cc4d005bdb5d5e8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | import { defineConfig } from 'cypress';
export default defineConfig({
  downloadsFolder: 'tests/cypress/downloads',
  fixturesFolder: 'tests/cypress/fixtures',
  screenshotsFolder: 'tests/cypress/screenshots',
  supportFolder: 'tests/cypress/support',
  videosFolder: 'tests/cypress/videos',
  e2e: {
    baseUrl: 'http://localhost:3000',
    specPattern: '**/*.cy.{js,jsx,ts,tsx}',
    supportFile: 'tests/cypress/support/e2e.ts',
  },
});
 |