forked from verdnatura/salix-front
test: update assertion to use contain.text for price validation
This commit is contained in:
parent
9cfd70f252
commit
3a590d5639
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue