fix test
gitea/salix-front/pipeline/head There was a failure building this commit Details

This commit is contained in:
Pau 2022-12-20 11:53:49 +01:00
parent df5eb9f27e
commit 89a4ca78c1
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
describe('WorkerList', () => {
beforeEach(() => {
cy.viewport(1280, 720)
cy.login('developer')
cy.viewport(1280, 720);
cy.login('developer');
cy.visit('/#/worker/list');
});
@ -13,8 +13,8 @@ describe('WorkerList', () => {
it('should open the worker summary', () => {
cy.get('div[class="q-item__section column q-item__section--side justify-center q-pa-md"]').eq(0).click();
cy.get('div[class="header bg-primary q-pa-sm q-mb-md"').should('have.text', '1110 - Jessica');
cy.get('div[class="header bg-primary q-pa-sm q-mb-md"').should('have.text', '1110 - Jessica Jones');
cy.get('div[class="q-item__label q-item__label--header text-h6"]').eq(0).should('have.text', 'Basic data');
cy.get('div[class="q-item__label q-item__label--header text-h6"]').eq(1).should('have.text', 'User data');
});
});
});