forked from verdnatura/salix-front
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
|
describe('ZoneUpcomingDeliveries', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.login('developer');
|
||
|
cy.viewport(1920, 1080);
|
||
|
cy.visit(`/#/zone/upcoming-deliveries`);
|
||
|
});
|
||
|
|
||
|
it('should show the page', () => {});
|
||
|
});
|