2022-06-15 23:37:15 +02:00
|
|
|
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}'
|
|
|
|
|
}
|
2022-06-15 23:37:15 +02:00
|
|
|
});
|