Skip to content

Commit

Permalink
feat: Full test skips public simulation (#7186)
Browse files Browse the repository at this point in the history
The e2e prover test skips public simulation. Change suggested by
@sirasistant
  • Loading branch information
codygunton authored Jun 25, 2024
1 parent 80d26d8 commit 4c1997f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_prover/full.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ describe('full_prover', () => {
logger.info(`Verifying private kernel tail proof`);
await expect(t.circuitProofVerifier?.verifyProof(privateTx)).resolves.not.toThrow();

const sentPrivateTx = privateInteraction.send();
const sentPublicTx = publicInteraction.send();
const sentPrivateTx = privateInteraction.send({ skipPublicSimulation: true });
const sentPublicTx = publicInteraction.send({ skipPublicSimulation: true });
await Promise.all([
sentPrivateTx.wait({ timeout: 1200, interval: 10 }),
sentPublicTx.wait({ timeout: 1200, interval: 10 }),
Expand Down

0 comments on commit 4c1997f

Please sign in to comment.