Skip to content

Commit 489d28b

Browse files
committed
fix: increase webServer timeout for uv dependency download
uv needs extra time on first run to download Python dependencies
1 parent 656a029 commit 489d28b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

playwright.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export default defineConfig({
3232
url: "http://localhost:8080",
3333
// Always start fresh servers to avoid stale state issues
3434
reuseExistingServer: false,
35-
timeout: 120000,
35+
// 3 minutes to allow uv to download Python dependencies on first run
36+
timeout: 180000,
3637
},
3738
// Snapshot configuration
3839
expect: {

0 commit comments

Comments
 (0)