diff --git a/cypress-tests/cypress-marketplace.config.js b/cypress-tests/cypress-marketplace.config.js index d00572d8a9..ce955b3c66 100644 --- a/cypress-tests/cypress-marketplace.config.js +++ b/cypress-tests/cypress-marketplace.config.js @@ -75,10 +75,9 @@ module.exports = defineConfig({ experimentalModfyObstructiveThirdPartyCode: true, experimentalRunAllSpecs: true, baseUrl: "http://localhost:8082", - // specPattern: [ - // "cypress/e2e/happyPath/marketplace/commonTestcases/**/*.cy.js", - // ] - specPattern: [ ], + specPattern: [ + "cypress/e2e/happyPath/marketplace/commonTestcases/**/*.cy.js", + ] numTestsKeptInMemory: 1, redirectionLimit: 7, experimentalRunAllSpecs: true, diff --git a/cypress-tests/cypress-platform.config.js b/cypress-tests/cypress-platform.config.js index d5642be785..cb3575906a 100644 --- a/cypress-tests/cypress-platform.config.js +++ b/cypress-tests/cypress-platform.config.js @@ -96,17 +96,16 @@ module.exports = defineConfig({ experimentalModfyObstructiveThirdPartyCode: true, baseUrl: environment.baseUrl, configFile: environment.configFile, - // specPattern: [ - // "cypress/e2e/happyPath/platform/firstUser/firstUserOnboarding.cy.js", - // // Exclude specific files from ceTestcases/apps and ceTestcases/workspace - // "cypress/e2e/happyPath/platform/ceTestcases/apps/appSlug.cy.js", - // "cypress/e2e/happyPath/platform/ceTestcases/**/!(*appSlug|appImport|privateAndpublicApps|version).cy.js", - // // Exclude workspaceConstants.cy.js explicitly - // "cypress/e2e/happyPath/platform/ceTestcases/workspace/!(*groupDuplication|workspaceConstants).cy.js", - // "!cypress/e2e/happyPath/platform/ceTestcases/workspace/workspaceConstants.cy.js", - // "cypress/e2e/happyPath/platform/commonTestcases/**/*.cy.js", - // ] - specPattern: [ ], + specPattern: [ + "cypress/e2e/happyPath/platform/firstUser/firstUserOnboarding.cy.js", + // Exclude specific files from ceTestcases/apps and ceTestcases/workspace + "cypress/e2e/happyPath/platform/ceTestcases/apps/appSlug.cy.js", + "cypress/e2e/happyPath/platform/ceTestcases/**/!(*appSlug|appImport|privateAndpublicApps|version).cy.js", + // Exclude workspaceConstants.cy.js explicitly + "cypress/e2e/happyPath/platform/ceTestcases/workspace/!(*groupDuplication|workspaceConstants).cy.js", + "!cypress/e2e/happyPath/platform/ceTestcases/workspace/workspaceConstants.cy.js", + "cypress/e2e/happyPath/platform/commonTestcases/**/*.cy.js", + ], numTestsKeptInMemory: 1, redirectionLimit: 15, experimentalMemoryManagement: true,