cont : another try

This commit is contained in:
Georgi Gerganov 2026-05-25 09:14:48 +03:00
parent 3021f0f4c5
commit baac31998a
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735

View File

@ -1,6 +1,7 @@
import { expect, test } from '@playwright/test';
test('home page has expected title', async ({ page }) => {
test('home page loads', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/llama-ui/);
// Wait for the SPA to hydrate — the chat form is rendered by the hydrated app
await expect(page.locator('form').first()).toBeVisible();
});