Skip to content

Commit

Permalink
Increase delay to avoid CI/CD timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
jzvikart committed Dec 16, 2024
1 parent aea64d4 commit 8824041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testLibrary.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function startAgent(character = DEFAULT_CHARACTER) {
log(`proc=${JSON.stringify(proc)}`);

// Wait for server to be ready
await new Promise(resolve => setTimeout(resolve, 20000));
await new Promise(resolve => setTimeout(resolve, 60000));
return proc;
}

Expand Down

0 comments on commit 8824041

Please sign in to comment.