0
0
Fork 0

test: update assertion to use contain.text for price validation

This commit is contained in:
Alex Moreno 2025-03-14 13:24:06 +01:00
parent 9cfd70f252
commit 3a590d5639
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ describe('TicketSale', () => {
cy.get('[data-col-field="price"]')
.find('.q-btn > .q-btn__content')
.should('have.text', `${price}`);
.should('contain.text', `${price}`);
});
it('update discount', () => {
const discount = Math.floor(Math.random() * 100) + 1;