fix(e2e): increase playwright webServer startup timeout

This commit is contained in:
Nyk 2026-03-05 11:28:47 +07:00
parent 17b51623be
commit dd759dcdb9
1 changed files with 7 additions and 1 deletions

View File

@ -21,6 +21,12 @@ export default defineConfig({
command: 'pnpm start',
url: 'http://127.0.0.1:3005',
reuseExistingServer: true,
timeout: 30_000,
timeout: 120_000,
env: {
...process.env,
API_KEY: process.env.API_KEY || 'test-api-key-e2e-12345',
AUTH_USER: process.env.AUTH_USER || 'testadmin',
AUTH_PASS: process.env.AUTH_PASS || 'testpass1234!',
},
}
})