1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 04:05:01 +00:00
mon-entreprise/site/cypress.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
583 B
TypeScript
Raw Normal View History

2022-06-21 13:29:03 +02:00
import { defineConfig } from 'cypress'
export default defineConfig({
projectId: 'jxcngh',
env: {
language: 'fr',
},
chromeWebSecurity: false,
e2e: {
// eslint-disable-next-line
setupNodeEvents(on, config) {},
baseUrl: 'http://localhost:3000/mon-entreprise',
2022-06-21 13:29:03 +02:00
specPattern: 'cypress/integration/mon-entreprise/**/*.{js,jsx,ts,tsx}',
},
retries: {
// Configure retry attempts for `cypress run`
// Default is 0
runMode: 2,
// Configure retry attempts for `cypress open`
// Default is 0
openMode: 0,
},
videoCompression: 30,
videoUploadOnPasses: false,
2022-06-21 13:29:03 +02:00
})