Portal/rsconcept/frontend/tests/app.spec.ts
2025-03-06 21:09:09 +03:00

10 lines
337 B
TypeScript

import { expect, test } from './setup';
test('should load the homepage and display login button', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle('Концепт Портал');
await page.locator('.h-full > .mr-1').click();
await expect(page.getByText('Логин или email')).toBeVisible();
});