Files
ops-Gazelle/cypress.config.js
2023-04-04 18:55:57 +02:00

20 lines
636 B
JavaScript

const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
watchForFileChanges: false,
baseUrl: 'http://localhost/',
downloadsFolder: 'tests/cypress/downloads',
fixturesFolder: 'tests/cypress/fixtures',
screenshotsFolder: 'tests/cypress/screenshots',
videosFolder: 'tests/cypress/videos',
supportFile: 'tests/cypress/support/e2e.{js,jsx,ts,tsx}',
specPattern: 'tests/cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
video: false,
screenshotOnRunFailure: false,
setupNodeEvents(on, config) {
require('cypress-terminal-report/src/installLogsPrinter')(on);
}
},
});