forked from verdnatura/salix-front
refactor: refs #6897 remove 'only' from test cases to ensure all tests run
This commit is contained in:
parent
5f624bbf7f
commit
86184b905e
|
@ -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');
|
||||
|
|
|
@ -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");
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue