Skip to content

Commit

Permalink
Increase e2e tests timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Feb 16, 2024
1 parent cf6a8f9 commit 664d416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_deploy_contract.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ describe('e2e_deploy_contract', () => {
logger(`Deploying contract instance at ${address.toString()} class id ${contractClassId.toString()}`);

await deployInstance(wallet, instance).send().wait();
});
}, 60_000);

it('stores contract instance in the aztec node', async () => {
const deployed = await aztecNode.getContract(instance.address);
Expand Down Expand Up @@ -301,7 +301,7 @@ describe('e2e_deploy_contract', () => {
await contract.methods.increment_public_value(whom, 10).send({ skipPublicSimulation: true }).wait();
const stored = await contract.methods.get_public_value(whom).view();
expect(stored).toEqual(10n);
});
}, 30_000);
});
});

Expand Down

0 comments on commit 664d416

Please sign in to comment.