From 551967410fecee0aca238d155950c59f49ffe018 Mon Sep 17 00:00:00 2001 From: pablone Date: Tue, 18 Mar 2025 09:28:14 +0100 Subject: [PATCH] test: refs #8602 skip custom value dialog and order creation tests in OrderCatalog and OrderList --- test/cypress/integration/Order/orderCatalog.spec.js | 2 +- test/cypress/integration/order/orderList.spec.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cypress/integration/Order/orderCatalog.spec.js b/test/cypress/integration/Order/orderCatalog.spec.js index a106d0e8ad0..386e3b2aae1 100644 --- a/test/cypress/integration/Order/orderCatalog.spec.js +++ b/test/cypress/integration/Order/orderCatalog.spec.js @@ -34,7 +34,7 @@ describe('OrderCatalog', () => { searchByCustomTagInput('Silver'); }); - it('filters by custom value dialog', () => { + it.skip('filters by custom value dialog', () => { Cypress.on('uncaught:exception', (err) => { if (err.message.includes('canceled')) { return false; diff --git a/test/cypress/integration/order/orderList.spec.js b/test/cypress/integration/order/orderList.spec.js index c48b317a8ea..34cd2bffcf8 100644 --- a/test/cypress/integration/order/orderList.spec.js +++ b/test/cypress/integration/order/orderList.spec.js @@ -30,7 +30,7 @@ describe('OrderList', () => { cy.url().should('include', `/order`); }); - it('filter list and create order', () => { + it.skip('filter list and create order', () => { cy.dataCy('Customer ID_input').type('1101{enter}'); cy.dataCy('vnTableCreateBtn').click(); cy.dataCy('landedDate').find('input').type('06/01/2001');