From 86184b905ef39b0239da8c47362385da85597ea3 Mon Sep 17 00:00:00 2001 From: pablone Date: Mon, 10 Feb 2025 16:05:01 +0100 Subject: [PATCH] refactor: refs #6897 remove 'only' from test cases to ensure all tests run --- .../integration/invoiceOut/invoiceOutNegativeBases.spec.js | 2 +- test/cypress/integration/item/itemTag.spec.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cypress/integration/invoiceOut/invoiceOutNegativeBases.spec.js b/test/cypress/integration/invoiceOut/invoiceOutNegativeBases.spec.js index 93ba5c48b..02b7fbb43 100644 --- a/test/cypress/integration/invoiceOut/invoiceOutNegativeBases.spec.js +++ b/test/cypress/integration/invoiceOut/invoiceOutNegativeBases.spec.js @@ -6,7 +6,7 @@ describe('InvoiceOut negative bases', () => { cy.visit(`/#/invoice-out/negative-bases`); }); - it.only('should filter and download as CSV', () => { + it('should filter and download as CSV', () => { cy.get('input[name="ticketFk"]').type('23{enter}'); cy.get('#subToolbar > .q-btn').click(); cy.checkNotification('CSV downloaded successfully'); diff --git a/test/cypress/integration/item/itemTag.spec.js b/test/cypress/integration/item/itemTag.spec.js index fed457a1c..d1596f693 100644 --- a/test/cypress/integration/item/itemTag.spec.js +++ b/test/cypress/integration/item/itemTag.spec.js @@ -6,14 +6,14 @@ describe('Item tag', () => { cy.visit(`/#/item/1/tags`); }); - it.only('should throw an error adding an existent tag', () => { + it('should throw an error adding an existent tag', () => { cy.get('.q-page').should('be.visible'); cy.get('.q-page-sticky > div').click(); cy.get('.q-page-sticky > div').click(); cy.dataCy('Tag_select').eq(7).type('Tallos'); cy.get('.q-menu .q-item').contains('Tallos').click(); cy.get(':nth-child(8) > [label="Value"]').type('1'); - +cy.dataCy('crudModelDefaultSaveBtn').click(); + cy.dataCy('crudModelDefaultSaveBtn').click(); cy.checkNotification("The tag or priority can't be repeated for an item"); });