test: refs #8862 disable test isolation for InvoiceOut list spec

This commit is contained in:
Alex Moreno 2025-04-15 14:11:22 +02:00
parent 608086bd8d
commit 1a27833081
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/// <reference types="cypress" /> /// <reference types="cypress" />
describe('InvoiceOut list', { testIsolation: true }, () => { describe('InvoiceOut list', () => {
const serial = 'Española rapida'; const serial = 'Española rapida';
const columnCheckbox = const columnCheckbox =
'.bg-header > :nth-child(1) > .q-checkbox > .q-checkbox__inner'; '.bg-header > :nth-child(1) > .q-checkbox > .q-checkbox__inner';
@ -24,6 +24,7 @@ describe('InvoiceOut list', { testIsolation: true }, () => {
}); });
it('should download all pdfs', () => { it('should download all pdfs', () => {
cy.get(columnCheckbox).click();
cy.get(columnCheckbox).click(); cy.get(columnCheckbox).click();
cy.dataCy('InvoiceOutDownloadPdfBtn').click(); cy.dataCy('InvoiceOutDownloadPdfBtn').click();
}); });