0
0
Fork 0

refactor: refs #6897 remove 'only' from test cases to ensure all tests run

This commit is contained in:
Pablo Natek 2025-02-10 16:05:01 +01:00
parent 5f624bbf7f
commit 86184b905e
2 changed files with 3 additions and 3 deletions

View File

@ -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');

View File

@ -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");
});