mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-27 11:14:59 +00:00
38 lines
1 KiB
TypeScript
38 lines
1 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test'
|
|
|
|
const localNoProxyHosts = ['localhost', '127.0.0.1', '::1']
|
|
const mergedNoProxy = Array.from(new Set([
|
|
...(process.env.NO_PROXY?.split(',').filter(Boolean) ?? []),
|
|
...(process.env.no_proxy?.split(',').filter(Boolean) ?? []),
|
|
...localNoProxyHosts,
|
|
])).join(',')
|
|
|
|
process.env.NO_PROXY = mergedNoProxy
|
|
process.env.no_proxy = mergedNoProxy
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
fullyParallel: false,
|
|
timeout: process.env.CI ? 90_000 : 45_000,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: Number(process.env.PLAYWRIGHT_WORKERS ?? 1),
|
|
reporter: 'html',
|
|
use: {
|
|
baseURL: 'http://127.0.0.1:3000',
|
|
trace: 'on-first-retry',
|
|
screenshot: 'on',
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
webServer: {
|
|
command: 'pnpm exec vite --host 127.0.0.1 --port 3000 --strictPort',
|
|
url: 'http://127.0.0.1:3000',
|
|
reuseExistingServer: true,
|
|
timeout: 120000,
|
|
},
|
|
})
|