cypress.config.ts 483 B

123456789101112131415
  1. import { defineConfig } from 'cypress';
  2. export default defineConfig({
  3. e2e: {
  4. supportFile: 'tests/e2e/support/e2e.{js,jsx,ts,tsx}',
  5. specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}',
  6. videosFolder: 'tests/e2e/videos',
  7. screenshotsFolder: 'tests/e2e/screenshots',
  8. baseUrl: 'http://localhost:5173',
  9. // eslint-disable-next-line @typescript-eslint/no-unused-vars
  10. setupNodeEvents(on, config) {
  11. // implement node event listeners here
  12. },
  13. },
  14. });