From 1a27833081d682337c8b8fd300990455e0457f85 Mon Sep 17 00:00:00 2001 From: alexm Date: Tue, 15 Apr 2025 14:11:22 +0200 Subject: [PATCH] test: refs #8862 disable test isolation for InvoiceOut list spec --- test/cypress/integration/invoiceOut/invoiceOutList.spec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/cypress/integration/invoiceOut/invoiceOutList.spec.js b/test/cypress/integration/invoiceOut/invoiceOutList.spec.js index 592208a01..f0f120640 100644 --- a/test/cypress/integration/invoiceOut/invoiceOutList.spec.js +++ b/test/cypress/integration/invoiceOut/invoiceOutList.spec.js @@ -1,5 +1,5 @@ /// -describe('InvoiceOut list', { testIsolation: true }, () => { +describe('InvoiceOut list', () => { const serial = 'EspaƱola rapida'; const columnCheckbox = '.bg-header > :nth-child(1) > .q-checkbox > .q-checkbox__inner'; @@ -24,6 +24,7 @@ describe('InvoiceOut list', { testIsolation: true }, () => { }); it('should download all pdfs', () => { + cy.get(columnCheckbox).click(); cy.get(columnCheckbox).click(); cy.dataCy('InvoiceOutDownloadPdfBtn').click(); });