Files
kawai-focus-v2/client/cypress.config.ts
2026-02-19 16:26:16 +03:00

15 lines
423 B
TypeScript

import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:5173',
supportFile: 'tests/e2e/support/e2e.js',
specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}',
videosFolder: 'tests/e2e/videos',
screenshotsFolder: 'tests/e2e/screenshots',
setupNodeEvents(on, config) {
// Пока пусто — можно не трогать
},
},
});