diff --git a/.dockerignore b/.dockerignore index bece7cb38..4ef25f5eb 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,7 +1,6 @@ /.idea /node_modules /data* -/cypress /out /test /kubernetes diff --git a/.eslintrc.js b/.eslintrc.js index aa7f23a8a..3ada694c0 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,7 +1,6 @@ module.exports = { ignorePatterns: [ "test/*.js", - "test/cypress", "server/modules/apicache/*", "src/util.js" ], diff --git a/config/cypress.config.js b/config/cypress.config.js deleted file mode 100644 index 26784e882..000000000 --- a/config/cypress.config.js +++ /dev/null @@ -1,28 +0,0 @@ -const { defineConfig } = require("cypress"); - -module.exports = defineConfig({ - projectId: "vyjuem", - e2e: { - experimentalStudio: true, - setupNodeEvents(on, config) { - - }, - fixturesFolder: "test/cypress/fixtures", - screenshotsFolder: "test/cypress/screenshots", - videosFolder: "test/cypress/videos", - downloadsFolder: "test/cypress/downloads", - supportFile: "test/cypress/support/e2e.js", - baseUrl: "http://localhost:3002", - defaultCommandTimeout: 10000, - pageLoadTimeout: 60000, - viewportWidth: 1920, - viewportHeight: 1080, - specPattern: [ - "test/cypress/e2e/setup.cy.js", - "test/cypress/e2e/**/*.js" - ], - }, - env: { - baseUrl: "http://localhost:3002", - }, -}); diff --git a/config/cypress.frontend.config.js b/config/cypress.frontend.config.js deleted file mode 100644 index eecdcb8dd..000000000 --- a/config/cypress.frontend.config.js +++ /dev/null @@ -1,10 +0,0 @@ -const { defineConfig } = require("cypress"); - -module.exports = defineConfig({ - e2e: { - supportFile: false, - specPattern: [ - "test/cypress/unit/**/*.js" - ], - } -});