mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-26 11:26:55 +08:00
16 lines
502 B
TypeScript
16 lines
502 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
import base from './playwright.config';
|
|
export default defineConfig({
|
|
...base,
|
|
retries: 0,
|
|
outputDir: 'test-results-structured',
|
|
use: { ...base.use, baseURL: 'http://127.0.0.1:4197' },
|
|
webServer: {
|
|
command:
|
|
'taskset -c 0,1 node node_modules/vite/bin/vite.js --config vite.structured.config.ts --host 127.0.0.1 --port 4197 --strictPort',
|
|
url: 'http://127.0.0.1:4197',
|
|
reuseExistingServer: false,
|
|
timeout: 120000,
|
|
},
|
|
});
|