2025-03-06 21:09:09 +03:00
|
|
|
import { expect, test } from './setup';
|
2025-01-27 16:11:35 +03:00
|
|
|
|
2025-01-14 16:11:01 +03:00
|
|
|
test('should load the homepage and display login button', async ({ page }) => {
|
|
|
|
await page.goto('/');
|
|
|
|
await expect(page).toHaveTitle('Концепт Портал');
|
2025-01-27 16:11:35 +03:00
|
|
|
|
2025-03-02 19:28:32 +03:00
|
|
|
await page.locator('.h-full > .mr-1').click();
|
2025-01-14 16:11:01 +03:00
|
|
|
await expect(page.getByText('Логин или email')).toBeVisible();
|
|
|
|
});
|