From 9b99e615f361464d02e8fa6ae07bce15bdfd9e9d Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Fri, 30 Aug 2024 19:25:32 -0300 Subject: [PATCH] Enable regression test --- yarn-project/end-to-end/src/e2e_block_building.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/end-to-end/src/e2e_block_building.test.ts b/yarn-project/end-to-end/src/e2e_block_building.test.ts index 92f830001ad..cb4655f5561 100644 --- a/yarn-project/end-to-end/src/e2e_block_building.test.ts +++ b/yarn-project/end-to-end/src/e2e_block_building.test.ts @@ -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, @@ -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 }))); }); }); });