test: refs #8388 change beforeEach to before for login and visit in InvoiceInVat tests
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jorge Penadés 2025-05-16 13:33:07 +02:00
parent cd59f880bb
commit bfa8d6eec5
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ describe('InvoiceInVat', () => {
const firstDeductible = 'td[data-col-field="isDeductible"][data-row-index="0"]'; const firstDeductible = 'td[data-col-field="isDeductible"][data-row-index="0"]';
const taxType = 'H.P. IVA 21% CEE'; const taxType = 'H.P. IVA 21% CEE';
beforeEach(() => { before(() => {
cy.login('administrative'); cy.login('administrative');
cy.visit(`/#/invoice-in/1/vat`); cy.visit(`/#/invoice-in/1/vat`);
}); });