From caf1759e01813270f61b0fff9d4e0ef490511ed1 Mon Sep 17 00:00:00 2001 From: arunshenoy99 Date: Fri, 9 Aug 2024 17:39:10 +0530 Subject: [PATCH] Skip Next Step Novice User tests for WP < 6.5 --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index 09784ab6..6b52ca1b 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -61,6 +61,7 @@ module.exports = defineConfig({ config.excludeSpecPattern = config.excludeSpecPattern.concat( [ 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Site-Capabilities/**', 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Home/homePageWithWoo.cy.js', + 'vendor/newfold-labs/wp-module-ecommerce/tests/cypress/integration/Home/ecommerce-next-steps.cy.js', // Skip this since Onboarding does not support this version 'vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/**' // Onboarding requires WP 6.5 or greater, as it uses the Wonder Theme which has the same requirement ] ); }