mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 09:27:23 -05:00
23 lines
624 B
JavaScript
23 lines
624 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:5001',
|
|
defaultCommandTimeout: 20000,
|
|
downloadsFolder: 'client/cypress/downloads',
|
|
fixturesFolder: 'client/cypress/fixtures',
|
|
requestTimeout: 15000,
|
|
screenshotsFolder: 'client/cypress/screenshots',
|
|
specPattern: 'client/cypress/integration/',
|
|
supportFile: 'client/cypress/support/index.js',
|
|
video: true,
|
|
videoUploadOnPasses: false,
|
|
videosFolder: 'client/cypress/videos',
|
|
viewportHeight: 1024,
|
|
viewportWidth: 1280,
|
|
env: {
|
|
coverage: false
|
|
}
|
|
},
|
|
})
|