Dev and Test run fixed. New Datepicker. Tests fixed. Message bookmarking fixed.

This commit is contained in:
aodulov
2025-12-18 14:06:45 +02:00
parent e9aec9a65d
commit 3a8f132b91
12 changed files with 347 additions and 24 deletions

View File

@@ -158,7 +158,7 @@ test.describe('V. User & System Management', () => {
await page.getByRole('button', { name: 'Login' }).click();
}
await page.getByRole('button', { name: /Профиль|Profile/ }).click();
await page.getByRole('button', { name: /^(Профиль|Profile)$/ }).click();
await expect(page.getByRole('heading', { name: 'Профиль', exact: true })).toBeVisible();
});
@@ -498,7 +498,7 @@ test.describe('V. User & System Management', () => {
const user = await createUniqueUser();
const apiContext = await playwrightRequest.newContext({
baseURL: 'http://127.0.0.1:3001',
baseURL: 'http://127.0.0.1:3201',
extraHTTPHeaders: {
'Authorization': `Bearer ${user.token}`
}