#7014 refactor <module>Main.vue #476

Merged
jon merged 14 commits from 7014-RefactorQDrawer into dev 2024-07-24 05:17:14 +00:00
3 changed files with 0 additions and 4 deletions
Showing only changes of commit 7ce05406cc - Show all commits

View File

@ -3,12 +3,10 @@ describe('ZoneDeliveryDays', () => {
cy.login('developer'); cy.login('developer');
cy.viewport(1920, 1080); cy.viewport(1920, 1080);
cy.visit(`/#/zone/delivery-days`); cy.visit(`/#/zone/delivery-days`);
cy.waitForElement('.q-page', 6000);
}); });
it('should query for the day', () => { it('should query for the day', () => {
cy.get('.q-form > .q-btn > .q-btn__content').click(); cy.get('.q-form > .q-btn > .q-btn__content').click();
cy.waitForElement('.q-notification__message', 6000);
cy.get('.q-notification__message').should( cy.get('.q-notification__message').should(
'have.text', 'have.text',
'No service for the specified zone' 'No service for the specified zone'

View File

@ -3,7 +3,6 @@ describe('ZoneList', () => {
cy.viewport(1920, 1080); cy.viewport(1920, 1080);
cy.login('developer'); cy.login('developer');
cy.visit(`/#/zone/list`); cy.visit(`/#/zone/list`);
cy.waitForElement('.q-page', 6000);
}); });
it('should open the details', () => { it('should open the details', () => {

View File

@ -3,7 +3,6 @@ describe('ZoneUpcomingDeliveries', () => {
cy.login('developer'); cy.login('developer');
cy.viewport(1920, 1080); cy.viewport(1920, 1080);
cy.visit(`/#/zone/upcoming-deliveries`); cy.visit(`/#/zone/upcoming-deliveries`);
cy.waitForElement('.q-page', 6000);
}); });
it('should show the page', () => {}); it('should show the page', () => {});