Datasets:

Modalities:
Text
Formats:
text
Size:
< 1K
ArXiv:
Libraries:
Datasets
llama.cpp / tools /server /webui /tests /e2e /demo.test.ts
dlxj
todo: 基于 CUDA 13.0 编译
2517be1
raw
history blame contribute delete
182 Bytes
import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});