From b2cfc4e17153ca09c94e0243973524d5bff7364a Mon Sep 17 00:00:00 2001 From: Maddiaa0 <47148561+Maddiaa0@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:34:47 +0000 Subject: [PATCH 1/2] chore: skip p2p integration --- .../src/service/reqresp/p2p_client.integration.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts b/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts index 6364c497b86c..d2199f0d3130 100644 --- a/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts +++ b/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts @@ -169,7 +169,7 @@ describe('Req Resp p2p client integration', () => { await sleep(1000); }; - it( + it.skip( 'Returns undefined if unable to find a transaction from another peer', async () => { // We want to create a set of nodes and request transaction from them @@ -192,7 +192,7 @@ describe('Req Resp p2p client integration', () => { TEST_TIMEOUT, ); - it( + it.skip( 'Can request a transaction from another peer', async () => { // We want to create a set of nodes and request transaction from them @@ -218,7 +218,7 @@ describe('Req Resp p2p client integration', () => { TEST_TIMEOUT, ); - it( + it.skip( 'Will penalize peers that send invalid proofs', async () => { // We want to create a set of nodes and request transaction from them @@ -250,7 +250,7 @@ describe('Req Resp p2p client integration', () => { TEST_TIMEOUT, ); - it( + it.skip( 'Will penalize peers that send the wrong transaction', async () => { // We want to create a set of nodes and request transaction from them From 806af65b5a64e13284ff31e393c993cb86b46014 Mon Sep 17 00:00:00 2001 From: Maddiaa0 <47148561+Maddiaa0@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:36:22 +0000 Subject: [PATCH 2/2] chore: add note --- .../p2p/src/service/reqresp/p2p_client.integration.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts b/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts index d2199f0d3130..b52433a9b7bc 100644 --- a/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts +++ b/yarn-project/p2p/src/service/reqresp/p2p_client.integration.test.ts @@ -169,6 +169,7 @@ describe('Req Resp p2p client integration', () => { await sleep(1000); }; + // TODO: re-enable all in file with https://github.com/AztecProtocol/aztec-packages/issues/8707 is fixed it.skip( 'Returns undefined if unable to find a transaction from another peer', async () => {