Skip to content

Commit 853677a

Browse files
committed
22prev
1 parent 474fee1 commit 853677a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/wait-for-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const isRunningInCI = () => {
1919

2020
const waitForServer = async (timeout = null, retryInterval = null) => {
2121
const isCI = isRunningInCI();
22-
timeout = timeout || (isCI ? 300 : 30); // 5 minutes in CI, 30 seconds locally
22+
timeout = timeout || (isCI ? 600 : 30); // 10 minutes in CI, 30 seconds locally
2323
retryInterval = retryInterval || (isCI ? 10 : 1); // 10 seconds in CI, 1 second locally
2424

2525
const startTime = Date.now();

0 commit comments

Comments
 (0)