mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[server-ce] Add e2e test for CE GitOrigin-RevId: f76ee4d19680c57a3a0854bc89175b3fb352ca41
24 lines
555 B
JavaScript
24 lines
555 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
const specPattern = process.env.SPEC_PATTERN || './**/*.spec.{js,ts,tsx}'
|
|
|
|
module.exports = defineConfig({
|
|
fixturesFolder: 'cypress/fixtures',
|
|
video: !!process.env.CI,
|
|
screenshotsFolder: 'cypress/results',
|
|
videosFolder: 'cypress/results',
|
|
videoUploadOnPasses: false,
|
|
viewportHeight: 768,
|
|
viewportWidth: 1024,
|
|
e2e: {
|
|
baseUrl: 'http://localhost',
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
specPattern,
|
|
},
|
|
retries: {
|
|
runMode: 1,
|
|
},
|
|
})
|