2023-01-24 21:15:54 +01:00
|
|
|
const { defineConfig } = require('cypress')
|
|
|
|
|
|
|
|
module.exports = defineConfig({
|
|
|
|
chromeWebSecurity: false,
|
|
|
|
retries: 2,
|
2023-02-18 00:17:55 +01:00
|
|
|
video: false,
|
2023-01-24 21:15:54 +01:00
|
|
|
defaultCommandTimeout: 5000,
|
|
|
|
watchForFileChanges: false,
|
|
|
|
videosFolder: 'tests/cypress/videos',
|
|
|
|
screenshotsFolder: 'tests/cypress/screenshots',
|
|
|
|
fixturesFolder: 'tests/cypress/fixture',
|
|
|
|
e2e: {
|
|
|
|
setupNodeEvents(on, config) {
|
|
|
|
return require('./tests/cypress/plugins/index.js')(on, config)
|
|
|
|
},
|
|
|
|
baseUrl: 'http://ninja.test:8000/',
|
|
|
|
specPattern: 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}',
|
|
|
|
supportFile: 'tests/cypress/support/index.js',
|
|
|
|
},
|
|
|
|
})
|