#6891 showRightSideFilterPanel #353

Merged
jorgep merged 48 commits from 6891-showRightSideFilterPanel into dev 2024-05-15 13:39:23 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit b062474f91 - Show all commits

View File

@ -1,6 +1,6 @@
/// <reference types="cypress" />
Review

Arreglar test de e2e.

Arreglar test de e2e.
describe('InvoiceInDueDay', () => {
const inputs = 'label input';
const amountInput = 'tbody > tr:nth-child(1) td:nth-child(4)';
const addBtn = '.q-page-sticky > div > .q-btn > .q-btn__content';
beforeEach(() => {
@ -9,7 +9,7 @@ describe('InvoiceInDueDay', () => {
});
it('should update the amount', () => {
cy.get(inputs).eq(3).type(23);
cy.get(amountInput).type('{selectall}{backspace}23');
cy.saveCard();
cy.get('.q-notification__message').should('have.text', 'Data saved');
});