From 77d82ec30fba4d356d5045002a61702c6643e6b1 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Tue, 4 Jun 2024 03:02:34 +0200 Subject: [PATCH] removed the last reminents of cypress --- .dockerignore | 1 - .eslintrc.js | 1 - config/cypress.config.js | 28 ---------------------------- config/cypress.frontend.config.js | 10 ---------- 4 files changed, 40 deletions(-) delete mode 100644 config/cypress.config.js delete mode 100644 config/cypress.frontend.config.js 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" - ], - } -});