Files
LingvAI/cypress.config.ts
2022-10-25 01:10:16 +02:00

14 lines
334 B
TypeScript

import { defineConfig } from 'cypress';
export default defineConfig({
defaultCommandTimeout: 10000,
waitForAnimations: true,
retries: 4,
projectId: 'qgjdyd',
e2e: {
setupNodeEvents(on, config) {},
baseUrl: 'http://localhost:3000',
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}'
}
});