Files
kawai-focus-v2/client/cypress.config.js

15 lines
416 B
JavaScript

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}',
videosFolder: 'tests/e2e/videos',
screenshotsFolder: 'tests/e2e/screenshots',
setupNodeEvents(on, config) {
// Пока пусто — можно не трогать
},
},
});