test: minor changes

This commit is contained in:
Javier Segarra 2025-05-20 08:38:24 +02:00
parent be9794fcd8
commit 33eb77864f
2 changed files with 6 additions and 7 deletions

View File

@ -6,7 +6,7 @@ describe('TicketBasicData', () => {
cy.visit('/#/ticket/31/basic-data'); cy.visit('/#/ticket/31/basic-data');
}); });
it('Should redirect to customer basic data', () => { it.skip('Should redirect to customer basic data', () => {
cy.get('.q-page').should('be.visible'); cy.get('.q-page').should('be.visible');
cy.get(':nth-child(2) > div > .text-primary').click(); cy.get(':nth-child(2) > div > .text-primary').click();
cy.dataCy('Address_select').click(); cy.dataCy('Address_select').click();
@ -16,7 +16,7 @@ describe('TicketBasicData', () => {
).click(); ).click();
cy.url().should('include', '/customer/1104/basic-data'); cy.url().should('include', '/customer/1104/basic-data');
}); });
it.only('stepper', () => { it('stepper', () => {
cy.get('.q-stepper__tab--active').should('have.class', 'q-stepper__tab--active'); cy.get('.q-stepper__tab--active').should('have.class', 'q-stepper__tab--active');
cy.get('.q-stepper__nav > .q-btn--standard').click(); cy.get('.q-stepper__nav > .q-btn--standard').click();

View File

@ -26,8 +26,8 @@ describe('TicketList', () => {
cy.get('@windowOpen').should('be.calledWithMatch', /\/ticket\/\d+\/sale/); cy.get('@windowOpen').should('be.calledWithMatch', /\/ticket\/\d+\/sale/);
}); });
it.only('should create payment ticket', () => { it('should create payment ticket', () => {
cy.get('[data-cy="vnFilterPanel_search"] > .q-btn__content > .q-icon').click(); cy.searchInFilterPanel().click();
const rowSelected = const rowSelected =
'tbody > :nth-child(2) > :nth-child(1) > .q-checkbox > .q-checkbox__inner '; 'tbody > :nth-child(2) > :nth-child(1) > .q-checkbox > .q-checkbox__inner ';
@ -37,9 +37,8 @@ describe('TicketList', () => {
).click(); ).click();
const description = 'Albaran: 31'; const description = 'Albaran: 31';
cy.dataCy('Reference_input').should('have.value', description); cy.dataCy('Reference_input').should('have.value', description);
cy.selectOption('[data-cy="paymentBank"]', 'Cash').click(); cy.selectOption('[data-cy="paymentBank"]', 'Cash');
cy.get('[data-cy="Delivered amount_input"]').clear(); cy.dataCy('Delivered amount_input').clear().type('41.62');
cy.get('[data-cy="Delivered amount_input"]').type('41.62');
cy.dataCy('Reference_input').should('have.value', `Cash, ${description}`); cy.dataCy('Reference_input').should('have.value', `Cash, ${description}`);
cy.get('[aria-label="View recipt"]').click(); cy.get('[aria-label="View recipt"]').click();
cy.get('.q-btn--standard > .q-btn__content > .block').click(); cy.get('.q-btn--standard > .q-btn__content > .block').click();