#7354 end Zone migration #539

Merged
jon merged 58 commits from 7354_ZoneMigration_End into dev 2024-09-03 04:48:18 +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', () => {
jon marked this conversation as resolved Outdated

No forma parte del test pero si del componente. Inflación permite texto y deberia ser numérico

No forma parte del test pero si del componente. Inflación permite texto y deberia ser numérico
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');
});