cypress.config.ts 135 B

12345678
  1. import { defineConfig } from 'cypress';
  2. export default defineConfig({
  3. e2e: {
  4. baseUrl: 'http://localhost:8080'
  5. },
  6. video: true
  7. });