From c8c59886a19dd14612593d512a7187708f35f94b Mon Sep 17 00:00:00 2001 From: mahula Date: Wed, 12 Apr 2023 20:10:13 +0200 Subject: [PATCH] move cypress config to cypress.config.js --- cypress/cypress.config.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/cypress/cypress.config.js b/cypress/cypress.config.js index 9566a3a67..146d8d635 100644 --- a/cypress/cypress.config.js +++ b/cypress/cypress.config.js @@ -44,3 +44,19 @@ module.exports = defineConfig({ setupNodeEvents, }, }); + +module.exports = defineConfig({ + e2e: { + projectId: "qa7fe2", + chromeWebSecurity: false, + baseUrl: "http://localhost:3000", + specPattern: "cypress/e2e/**/*.feature", + supportFile: "cypress/support/e2e.js", + retries: { + runMode: 2, + openMode: 0, + }, + video: false, + setupNodeEvents, + }, +}); \ No newline at end of file