8355-testToMaster #1177

Merged
alexm merged 326 commits from 8355-testToMaster into master 2025-01-07 06:46:55 +00:00
1 changed files with 1 additions and 7 deletions
Showing only changes of commit a20afa5f35 - Show all commits

View File

@ -14,12 +14,6 @@ describe('ZoneBasicData', () => {
cy.get(notification).should('contains.text', "can't be blank");
});
it('should throw an error if the price is 0', () => {
cy.get(priceBasicData).type('0');
cy.get('.q-btn-group > .q-btn--standard').click();
cy.get(notification).should('Price must be greater than 0');
});
it('should throw an error if the price is empty', () => {
cy.get(priceBasicData).clear();
cy.get('.q-btn-group > .q-btn--standard').click();
@ -29,6 +23,6 @@ describe('ZoneBasicData', () => {
it("should edit the basicData's zone", () => {
cy.get('.q-card > :nth-child(1)').type(' modified');
cy.get('.q-btn-group > .q-btn--standard').click();
cy.get(notification).should('Price must be greater than 0');
cy.checkNotification('Data saved');
});
});