llama.cpp / tools /server /webui /tests /e2e /demo.test.ts
dlxj
update to support gemma4
682b227
Raw
History Blame Contribute Delete
190 Bytes
import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1').first()).toBeVisible();
});