Skip to content

Commit

Permalink
Enable regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Aug 30, 2024
1 parent 7f31c46 commit 9b99e61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_block_building.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ describe('e2e_block_building', () => {
});

// Regression for https://github.com/AztecProtocol/aztec-packages/issues/8306
it.skip('can simulate public txs while building a block', async () => {
it('can simulate public txs while building a block', async () => {
({
teardown,
pxe,
Expand Down Expand Up @@ -368,7 +368,7 @@ describe('e2e_block_building', () => {
}

logger.info('Waiting for txs to be mined');
await Promise.all(txs.map(tx => tx.wait()));
await Promise.all(txs.map(tx => tx.wait({ proven: false, timeout: 600 })));
});
});
});
Expand Down

0 comments on commit 9b99e61

Please sign in to comment.