Files
LingvAI/cypress.config.ts

14 lines
334 B
TypeScript
Raw Permalink Normal View History

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