diff --git a/cypress/cypress.config.js b/cypress/cypress.config.js new file mode 100644 index 000000000..7b37e4bda --- /dev/null +++ b/cypress/cypress.config.js @@ -0,0 +1,17 @@ +const { defineConfig } = require("cypress"); + + +module.exports = defineConfig({ + e2e: { + projectId: "qa7fe2", + chromeWebSecurity: false, + baseUrl: "http://localhost:3000", + specPattern: "**/*.feature", + supportFile: false, + retries: { + runMode: 2, + openMode: 0, + }, + setupNodeEvents, + }, +}); diff --git a/cypress/cypress.json b/cypress/cypress.json deleted file mode 100644 index f51ec64b9..000000000 --- a/cypress/cypress.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "projectId": "qa7fe2", - "defaultCommandTimeout": 10000, - "pageLoadTimeout": 180000, - "ignoreTestFiles": "*.js", - "chromeWebSecurity": false, - "baseUrl": "http://localhost:3000", - "video": false, - "retries": { - "runMode": 2, - "openMode": 0 - } -}