mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-04 11:10:05 +00:00
19 lines
439 B
JavaScript
19 lines
439 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
includeShadowDom: true,
|
|
chromeWebSecurity: false,
|
|
defaultCommandTimeout: 20000,
|
|
specPattern: 'cypress/integration/**/*.ts',
|
|
supportFile: 'cypress/support/index.js'
|
|
},
|
|
env: {
|
|
sasjsTestsUrl: 'http://localhost:5173',
|
|
username: '',
|
|
password: '',
|
|
screenshotOnRunFailure: false,
|
|
testingFinishTimeout: 600000
|
|
}
|
|
})
|