Quillan-Ronin / llama.cpp /tools /server /webui /playwright.config.ts
CrashOverrideX's picture
Add files using upload-large-folder tool
93e7af1 verified
raw
history blame contribute delete
258 Bytes
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'
});