mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-27 03:46:39 +08:00
16 lines
437 B
TypeScript
16 lines
437 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
import base from './playwright.config';
|
|
|
|
export default defineConfig({
|
|
...base,
|
|
retries: 0,
|
|
outputDir: 'test-results-completion-migration',
|
|
use: { ...base.use, baseURL: 'http://127.0.0.1:4198' },
|
|
webServer: {
|
|
command: 'pnpm exec vite --host 127.0.0.1 --port 4198 --strictPort',
|
|
url: 'http://127.0.0.1:4198',
|
|
reuseExistingServer: false,
|
|
timeout: 120000,
|
|
},
|
|
});
|