7983-testToMaster_2438 #718

Merged
alexm merged 353 commits from 7983-testToMaster_2438 into master 2024-09-17 05:39:39 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit ea1e82939a - Show all commits

View File

@ -1,4 +1,4 @@
describe('ZoneCreate', () => {
describe('ZoneBasicData', () => {
const notification = '.q-notification__message';
beforeEach(() => {

View File

@ -21,7 +21,7 @@ describe('ZoneCreate', () => {
cy.fillInForm({
...data,
});
cy.get('input[aria-label="Close"]').type('1000');
cy.get('input[aria-label="Close"]').type('10:00');
cy.get('.q-mt-lg > .q-btn--standard').click();
cy.get(notification).should('contains.text', 'Agency cannot be blank');
});
@ -31,7 +31,7 @@ describe('ZoneCreate', () => {
...data,
Agency: { val: 'inhouse pickup', type: 'select' },
});
cy.get('input[aria-label="Close"]').type('1000');
cy.get('input[aria-label="Close"]').type('10:00');
cy.get('.q-mt-lg > .q-btn--standard').click();
cy.get(notification).should('contains.text', 'Data created');
});