forked from verdnatura/salix-front
16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
|
describe('ZoneList', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.viewport(1920, 1080);
|
||
|
cy.login('developer');
|
||
|
cy.visit(`/#/zone/list`);
|
||
|
});
|
||
|
|
||
|
it('should open the details', () => {
|
||
|
cy.get(':nth-child(1) > .text-right > .material-symbols-outlined').click();
|
||
|
});
|
||
|
it('should redirect to summary', () => {
|
||
|
cy.waitForElement('.q-page');
|
||
|
cy.get('tbody > :nth-child(1)').click();
|
||
|
});
|
||
|
});
|