diff --git a/tests/sanity/tests/collaborative/applications.spec.ts b/tests/sanity/tests/collaborative/applications.spec.ts index d760d64ec6..c13b404580 100644 --- a/tests/sanity/tests/collaborative/applications.spec.ts +++ b/tests/sanity/tests/collaborative/applications.spec.ts @@ -18,7 +18,7 @@ test.describe('Collaborative tests for Application', () => { await (await page.goto(`${PlatformURI}/workbench/sanity-ws/recruit`))?.finished() }) - test.skip('Add comment from several users', async ({ page, browser }) => { + test('Add comment from several users', async ({ page, browser }) => { const vacancyName = 'Software Engineer' let talentName: TalentName // open second page diff --git a/tests/sanity/tests/model/recruiting/common-recruiting-page.ts b/tests/sanity/tests/model/recruiting/common-recruiting-page.ts index 6f2f5ed1f8..fde30911f8 100644 --- a/tests/sanity/tests/model/recruiting/common-recruiting-page.ts +++ b/tests/sanity/tests/model/recruiting/common-recruiting-page.ts @@ -18,7 +18,7 @@ export class CommonRecruitingPage extends CalendarPage { this.page = page this.inputComment = page.locator('div.text-input div.tiptap') this.buttonSendComment = page.locator('g#Send') - this.textComment = page.locator('div.msgactivity-container p') + this.textComment = page.locator('div.showMore-content p') this.inputAddAttachment = page.locator('div.antiSection #file') this.textAttachmentName = page.locator('div.name a') this.buttonCreateFirstReview = page.locator('span:has-text("Create review")') diff --git a/tests/sanity/tests/model/tracker/template-details-page.ts b/tests/sanity/tests/model/tracker/template-details-page.ts index f4c7d82da1..73dbd44346 100644 --- a/tests/sanity/tests/model/tracker/template-details-page.ts +++ b/tests/sanity/tests/model/tracker/template-details-page.ts @@ -31,7 +31,7 @@ export class TemplateDetailsPage extends CommonTrackerPage { this.buttonEstimation = page.locator('(//span[text()="Estimation"]/../div/button)[3]') this.buttonDueDate = page.locator('(//span[text()="Due date"]/../div/button)[2]') this.buttonSaveDueDate = page.locator('div.footer > button') - this.textComment = page.locator('div.labels-row') + this.textComment = page.locator('div.grid div.header') this.buttonMoreActions = page.locator('div.popupPanel-title > div > button:nth-child(1)') this.buttonDelete = page.locator('button[class*="menuItem"] > span', { hasText: 'Delete' }) } diff --git a/tests/sanity/tests/recruiting/applications.spec.ts b/tests/sanity/tests/recruiting/applications.spec.ts index 6dee8d3ad7..4adf8c1a9c 100644 --- a/tests/sanity/tests/recruiting/applications.spec.ts +++ b/tests/sanity/tests/recruiting/applications.spec.ts @@ -64,7 +64,7 @@ test.describe('Application tests', () => { await page.click('button:has-text("Chen Rosamund")') }) - test.skip('Edit an Application', async ({ page }) => { + test('Edit an Application', async ({ page }) => { const navigationMenuPage = new NavigationMenuPage(page) await navigationMenuPage.buttonApplications.click() diff --git a/tests/sanity/tests/recruiting/talents.spec.ts b/tests/sanity/tests/recruiting/talents.spec.ts index 07ae6feb54..3ff07a66f6 100644 --- a/tests/sanity/tests/recruiting/talents.spec.ts +++ b/tests/sanity/tests/recruiting/talents.spec.ts @@ -64,7 +64,7 @@ test.describe('candidate/talents tests', () => { expect(await page.locator('.cover-channel >> input').inputValue()).toEqual(email) }) - test.skip('Edit the Talent', async ({ page, context }) => { + test('Edit the Talent', async ({ page, context }) => { const navigationMenuPage = new NavigationMenuPage(page) await navigationMenuPage.buttonTalents.click() diff --git a/tests/sanity/tests/recruiting/vacancies.spec.ts b/tests/sanity/tests/recruiting/vacancies.spec.ts index e4cf10c343..a9298612e0 100644 --- a/tests/sanity/tests/recruiting/vacancies.spec.ts +++ b/tests/sanity/tests/recruiting/vacancies.spec.ts @@ -80,7 +80,7 @@ test.describe('Vacancy tests', () => { // expect(await page.locator('.antiTable-body__row').count()).toBeGreaterThan(2) // }) - test.skip('Edit a Vacancy', async ({ page }) => { + test('Edit a Vacancy', async ({ page }) => { const vacancyName = 'Edit Vacancy ' + generateId(4) const navigationMenuPage = new NavigationMenuPage(page) diff --git a/tests/sanity/tests/tracker/layout.spec.ts b/tests/sanity/tests/tracker/layout.spec.ts index 62872b766a..399cc998d5 100644 --- a/tests/sanity/tests/tracker/layout.spec.ts +++ b/tests/sanity/tests/tracker/layout.spec.ts @@ -94,6 +94,7 @@ test.describe('tracker layout tests', () => { const id = generateId(4) let issuesPropsP: Promise let issuesProps: IssueProps[] = [] + test.beforeEach(async ({ page }) => { await allure.parentSuite('Tracker tests') test.setTimeout(60000) diff --git a/tests/sanity/tests/tracker/template.spec.ts b/tests/sanity/tests/tracker/template.spec.ts index 711d9598ed..21df5d8bf8 100644 --- a/tests/sanity/tests/tracker/template.spec.ts +++ b/tests/sanity/tests/tracker/template.spec.ts @@ -47,7 +47,7 @@ test.describe('Tracker template tests', () => { }) }) - test.skip('Edit a Template', async ({ page }) => { + test('Edit a Template', async ({ page }) => { const newTemplate: NewIssue = { title: `Template for edit-${generateId()}`, description: 'Created template for edit'