From 58062e60679f6e02e54b225da079f4a100428541 Mon Sep 17 00:00:00 2001 From: Alexander Kovalenko Date: Mon, 10 Jun 2024 16:48:11 +0300 Subject: [PATCH] Unskip price filtering e2e tests. --- apps/storefront-e2e/src/integration/category.cy.ts | 2 +- apps/storefront-e2e/src/integration/search.cy.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/storefront-e2e/src/integration/category.cy.ts b/apps/storefront-e2e/src/integration/category.cy.ts index dbeef49e5..37223cb98 100644 --- a/apps/storefront-e2e/src/integration/category.cy.ts +++ b/apps/storefront-e2e/src/integration/category.cy.ts @@ -62,7 +62,7 @@ describe('Category suite', () => { categoryPage.visit(); }); - it.skip('should apply price filtering', () => { + it('should apply price filtering', () => { cy.log('set minimum price'); categoryPage.getFacets().setMinPrice(minPrice); categoryPage.waitForSearchRequest(); diff --git a/apps/storefront-e2e/src/integration/search.cy.ts b/apps/storefront-e2e/src/integration/search.cy.ts index f5e8ddce7..8c4631732 100644 --- a/apps/storefront-e2e/src/integration/search.cy.ts +++ b/apps/storefront-e2e/src/integration/search.cy.ts @@ -54,7 +54,7 @@ describe('Search suite', () => { searchPage.visit(); }); - it.skip('should apply price filtering', () => { + it('should apply price filtering', () => { cy.log('set minimum price'); searchPage.getFacets().setMinPrice(minPrice); searchPage.waitForSearchRequest();