14 lines
352 B
JavaScript
14 lines
352 B
JavaScript
describe('WorkerList', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1280, 720);
|
|
cy.login('developer');
|
|
cy.visit('/#/worker/list');
|
|
});
|
|
|
|
it('should open the worker summary', () => {
|
|
cy.get('.bg-header > :nth-child(2) > .full-width > :nth-child(1) >').type(
|
|
'jessica jones{enter}'
|
|
);
|
|
});
|
|
});
|