From b333b06772c89d96aacb5490d6a219fba7c09cc6 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 12 Feb 2026 20:57:17 +0100 Subject: Engage! --- llama.cpp/tools/server/webui/playwright.config.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 llama.cpp/tools/server/webui/playwright.config.ts (limited to 'llama.cpp/tools/server/webui/playwright.config.ts') diff --git a/llama.cpp/tools/server/webui/playwright.config.ts b/llama.cpp/tools/server/webui/playwright.config.ts new file mode 100644 index 0000000..26d3be5 --- /dev/null +++ b/llama.cpp/tools/server/webui/playwright.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from '@playwright/test'; + +export default defineConfig({ + webServer: { + command: 'npm run build && http-server ../public -p 8181', + port: 8181, + timeout: 120000, + reuseExistingServer: false + }, + testDir: 'tests/e2e' +}); -- cgit v1.2.3