Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ describe('Req Resp p2p client integration', () => {
await sleep(1000);
};

it(
// 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 () => {
// We want to create a set of nodes and request transaction from them
Expand All @@ -192,7 +193,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
Expand All @@ -218,7 +219,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
Expand Down Expand Up @@ -250,7 +251,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
Expand Down