Portal/rsconcept/frontend/tests/app.spec.ts

10 lines
337 B
TypeScript
Raw Normal View History

2025-03-06 21:09:09 +03:00
import { expect, test } from './setup';
2025-01-27 16:11:35 +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();
await expect(page.getByText('Логин или email')).toBeVisible();
});