Skip to content

Commit ac7e014

Browse files
add playwright global timeouts (#241)
1 parent fe3cef2 commit ac7e014

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

frontend/playwright.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ export default defineConfig({
1616
],
1717
use: {
1818
baseURL: `http://localhost:3000/`,
19+
actionTimeout: 10000, // Timeout for each action like click(), fill(), etc.
20+
navigationTimeout: 15000, // Timeout for navigation-related waits (goto, waitForLoadState, etc.)
1921
},
2022
webServer: {
2123
command: 'tsx --import ./app/.server/telemetry.ts ./app/.server/express/server.ts',

0 commit comments

Comments
 (0)