3690-fix(worker): fix calendar e2e #896

Merged
carlosjr merged 6 commits from 3690-worker_calendar_fixe2e into dev 2022-03-15 14:34:29 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 39b3e35725 - Show all commits

View File

@ -55,7 +55,7 @@ describe('Worker calendar path', () => {
});
describe(`as salesBoss`, () => {
it(`should log in and get to Hank's calendar`, async() => {
it(`should log in and get to Charles Xavier's calendar`, async() => {
alexm marked this conversation as resolved Outdated

this test is no longer about Hank, update test description

this test is no longer about Hank, update test description
await page.loginAndModule('salesBoss', 'worker');
await page.accessToSearchResult('Charles Xavier');
await page.accessToSection('worker.card.calendar');
@ -99,9 +99,9 @@ describe('Worker calendar path', () => {
});
});
describe(`as Hank`, () => {
describe(`as Charles Xavier`, () => {
it(`should log in and get to his calendar`, async() => {
await page.loginAndModule('HankPym', 'worker');
await page.loginAndModule('CharlesXavier', 'worker');
await page.accessToSearchResult('Charles Xavier');
await page.accessToSection('worker.card.calendar');
});