Some checks failed
Node.js CI / build (push) Failing after 2s
Node.js CI / e2e-tests (+(a11y|security|bugs)/**/*cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/!(o|d|m)*.cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/+(o|d)*.cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/m*.cy.js) (push) Failing after 2s
Security scan for docker image / build (push) Failing after 8s
CodeQL / Analyze (javascript) (push) Failing after 1m10s
20 lines
596 B
JavaScript
Executable File
20 lines
596 B
JavaScript
Executable File
const { defineConfig } = require("cypress")
|
|
|
|
const startOAuthServer = require("./test/e2e-cypress/support/helpers/oauth2-server")
|
|
|
|
module.exports = defineConfig({
|
|
fileServerFolder: "test/e2e-cypress/static",
|
|
fixturesFolder: "test/e2e-cypress/fixtures",
|
|
screenshotsFolder: "test/e2e-cypress/screenshots",
|
|
videosFolder: "test/e2e-cypress/videos",
|
|
video: false,
|
|
e2e: {
|
|
baseUrl: "http://localhost:3230/",
|
|
supportFile: "test/e2e-cypress/support/e2e.js",
|
|
specPattern: "test/e2e-cypress/e2e/**/*.cy.{js,jsx}",
|
|
setupNodeEvents: () => {
|
|
startOAuthServer()
|
|
},
|
|
},
|
|
})
|