14 lines
334 B
TypeScript
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}'
|
|
}
|
|
});
|