import { defineConfig } from 'cypress';
import {setupNodeEvents} from './src/plugins';

export default defineConfig({
  e2e: {
    baseUrl: 'https://localhost:3000',
    setupNodeEvents,
    specPattern: './src/e2e/**/*.feature',
    supportFile: './src/support/e2e.ts',
    retries: 2,
    env: {
      TAGS: 'not @skip',
    },
  },
});
