We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474fee1 commit 853677aCopy full SHA for 853677a
scripts/wait-for-server.js
@@ -19,7 +19,7 @@ const isRunningInCI = () => {
19
20
const waitForServer = async (timeout = null, retryInterval = null) => {
21
const isCI = isRunningInCI();
22
- timeout = timeout || (isCI ? 300 : 30); // 5 minutes in CI, 30 seconds locally
+ timeout = timeout || (isCI ? 600 : 30); // 10 minutes in CI, 30 seconds locally
23
retryInterval = retryInterval || (isCI ? 10 : 1); // 10 seconds in CI, 1 second locally
24
25
const startTime = Date.now();
0 commit comments