feat(client): add job experience widget to profile (#63503)

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Sem Bauke
2026-01-22 09:30:50 +01:00
committed by GitHub
parent 59a54b5040
commit f68b471d6d
36 changed files with 1274 additions and 29 deletions
+10 -2
View File
@@ -157,12 +157,20 @@ test.describe('Settings - Certified User', () => {
.locator('p')
.filter({ hasText: translations.settings.labels['my-portfolio'] })
).toBeVisible();
await expect(
page
.getByRole('group', {
name: translations.settings.labels['my-experience']
})
.locator('p')
.filter({ hasText: translations.settings.labels['my-experience'] })
).toBeVisible();
await expect(
page.getByText(settingsObject.private, { exact: true })
).toHaveCount(10);
).toHaveCount(11);
await expect(
page.getByText(settingsObject.public, { exact: true })
).toHaveCount(10);
).toHaveCount(11);
const saveButton = page.getByRole('button', {
name: translations.settings.headings.privacy
});