Skip to content

Commit

Permalink
chore: Increase test timeout to reduce flakes (#10641)
Browse files Browse the repository at this point in the history
Please read [contributing guidelines](CONTRIBUTING.md) and remove this
line.
  • Loading branch information
PhilWindle authored Dec 11, 2024
1 parent 001bbb1 commit 4ade2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/world-state/src/test/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('world-state integration', () => {
await db.close();
});

const awaitSync = async (blockToSyncTo: number, finalized?: number, maxTimeoutMS = 5000) => {
const awaitSync = async (blockToSyncTo: number, finalized?: number, maxTimeoutMS = 30000) => {
const startTime = Date.now();
let sleepTime = 0;
let tips = await synchronizer.getL2Tips();
Expand Down

0 comments on commit 4ade2ad

Please sign in to comment.