mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
16 lines
292 B
JavaScript
16 lines
292 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
chromeWebSecurity: false,
|
|
supportFile: false,
|
|
viewportHeight: 720,
|
|
viewportWidth: 1280,
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0
|
|
}
|
|
}
|
|
})
|