Skip to content

Commit

Permalink
Increase timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Jul 31, 2023
1 parent 87e4fc0 commit 10fa8d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_escrow_contract.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('e2e_escrow_contract', () => {
afterEach(async () => {
await aztecNode?.stop();
if (aztecRpcServer instanceof AztecRPCServer) await aztecRpcServer.stop();
});
}, 30_000);

const expectBalance = async (who: AztecAddress, expectedBalance: bigint) => {
const [balance] = await zkTokenContract.methods.getBalance(who).view({ from: who });
Expand Down Expand Up @@ -111,5 +111,5 @@ describe('e2e_escrow_contract', () => {

await retryUntil(() => aztecRpcServer.isAccountSynchronised(recipient), 'account sync', 30);
await expectBalance(recipient, 30n);
}, 60_000);
}, 90_000);
});

0 comments on commit 10fa8d8

Please sign in to comment.