refs #6677 VnSelectFilter add url prop #164

Merged
carlossa merged 8 commits from 6677-urlSelectFilter into dev 2024-01-31 14:42:43 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 5c87cfc671 - Show all commits

View File

@ -16,11 +16,12 @@ describe('InvoiceInBasicData', () => {
cy.get(selects).eq(0).type('Bros');
cy.get(selects).eq(0).type('{enter}');
cy.get('[title="Reset"]').click();
cy.get(appendBtns).eq(0).click();
cy.get('input').eq(2).type(4739);
cy.saveCard();
cy.get(`${selects} input`).eq(0).invoke('val').should('eq', 'Bros nick');
cy.get(`${selects} input`).eq(0).invoke('val').should('eq', 'Plants nick');
cy.get('input').eq(2).invoke('val').should('eq', '4739');
});