20 lines
527 B
JavaScript
20 lines
527 B
JavaScript
describe('WorkerList', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit('/#/worker/list');
|
|
});
|
|
|
|
it('should opern the worker summary', () => {
|
|
cy.get(
|
|
':nth-child(1) > .text-right > .q-btn > .q-btn__content > .q-icon'
|
|
).click();
|
|
});
|
|
|
|
it('should go to the worker summary', () => {
|
|
cy.get('#searchbar > .q-field > .q-field__inner > .q-field__control').type(
|
|
'jessica jones{enter}'
|
|
);
|
|
});
|
|
});
|