From e3adbefc4101b50a11f55b01e4e92c67f9423c15 Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 17 Apr 2025 08:23:18 +0200 Subject: [PATCH] test: enable invoiceOutList, invoiceOutSummary and ticketSale skipped --- test/cypress/integration/invoiceOut/invoiceOutList.spec.js | 2 +- test/cypress/integration/invoiceOut/invoiceOutSummary.spec.js | 4 ++-- test/cypress/integration/ticket/ticketSale.spec.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/cypress/integration/invoiceOut/invoiceOutList.spec.js b/test/cypress/integration/invoiceOut/invoiceOutList.spec.js index ba6f3e122..b8b42fa4b 100644 --- a/test/cypress/integration/invoiceOut/invoiceOutList.spec.js +++ b/test/cypress/integration/invoiceOut/invoiceOutList.spec.js @@ -28,7 +28,7 @@ describe('InvoiceOut list', () => { cy.dataCy('InvoiceOutDownloadPdfBtn').click(); }); - it.skip('should open the invoice descriptor from table icon', () => { + it('should open the invoice descriptor from table icon', () => { cy.get(firstSummaryIcon).click(); cy.get('.cardSummary').should('be.visible'); cy.get('.summaryHeader > div').should('include.text', 'A1111111'); diff --git a/test/cypress/integration/invoiceOut/invoiceOutSummary.spec.js b/test/cypress/integration/invoiceOut/invoiceOutSummary.spec.js index 029165bb8..49eed32c7 100644 --- a/test/cypress/integration/invoiceOut/invoiceOutSummary.spec.js +++ b/test/cypress/integration/invoiceOut/invoiceOutSummary.spec.js @@ -15,7 +15,7 @@ describe('InvoiceOut summary', () => { cy.login('developer'); cy.visit(`/#/invoice-out/1/summary`); }); - it.skip('open the descriptors', () => { + it('open the descriptors', () => { cy.get(firstRowDescriptors(1)).click(); cy.get('.descriptor').should('be.visible'); cy.get('.q-item > .q-item__label').should('include.text', '1'); @@ -30,7 +30,7 @@ describe('InvoiceOut summary', () => { cy.get('.q-item > .q-item__label').should('include.text', '1101'); }); - it.skip('should open the ticket list', () => { + it('should open the ticket list', () => { cy.get(toTicketList).click(); cy.get('[data-col-field="stateFk"]').each(($el) => { cy.wrap($el).contains('T1111111'); diff --git a/test/cypress/integration/ticket/ticketSale.spec.js b/test/cypress/integration/ticket/ticketSale.spec.js index 1e43d8a7d..6d84f214c 100644 --- a/test/cypress/integration/ticket/ticketSale.spec.js +++ b/test/cypress/integration/ticket/ticketSale.spec.js @@ -2,7 +2,7 @@ const firstRow = 'tbody > :nth-child(1)'; describe('TicketSale', () => { - describe.skip('Ticket #23', () => { + describe('Ticket #23', () => { beforeEach(() => { cy.login('developer'); cy.viewport(1920, 1080);