1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-15 16:10:06 +00:00

chore(deps): bump cypress

This commit is contained in:
mulahasanovic
2025-12-15 11:20:22 +01:00
parent e23aa4426c
commit ff927caf73
4 changed files with 385 additions and 123 deletions

18
cypress.config.js Normal file
View File

@@ -0,0 +1,18 @@
const { defineConfig } = require('cypress')
module.exports = defineConfig({
includeShadowDom: true,
e2e: {
chromeWebSecurity: false,
defaultCommandTimeout: 20000,
specPattern: 'cypress/integration/**/*.ts',
supportFile: 'cypress/support/index.js'
},
env: {
sasjsTestsUrl: 'http://localhost:5173',
username: '',
password: '',
screenshotOnRunFailure: false,
testingFinishTimeout: 600000
}
})