15 lines
423 B
TypeScript
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) {
|
|
// Пока пусто — можно не трогать
|
|
},
|
|
},
|
|
});
|