Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion yarn-project/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ function test_cmds {
else
echo "$hash ISOLATE=1 yarn-project/scripts/run_test.sh $test"
fi

done

# Enable real proofs in prover-client integration tests only on CI full
Expand Down
3 changes: 2 additions & 1 deletion yarn-project/end-to-end/scripts/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ case "$type" in
-e LOG_LEVEL \
-e COLLECT_METRICS \
--workdir "$repo_dir/yarn-project/end-to-end" \
aztecprotocol/build:3.0 ./scripts/test_simple.sh $TEST
aztecprotocol/build:3.0 ./scripts/test_simple.sh $TEST &
wait $!
;;
"compose")
# Strip leading non alpha numerics and replace / and . with _.
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/e2e_contract_updates.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe('e2e_contract_updates', () => {
}
};

afterAll(() => teardown());
afterEach(() => teardown());

it('should update the contract', async () => {
expect(await contract.methods.get_private_value().simulate()).toEqual(1n);
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/e2e_outbox.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('E2E Outbox Tests', () => {
contract = receipt.contract;
});

afterAll(() => teardown());
afterEach(() => teardown());

it('Inserts a new transaction with two out messages, and verifies sibling paths of both the new messages', async () => {
// recipient2 = msg.sender, so we can consume it later
Expand Down
1 change: 1 addition & 0 deletions yarn-project/end-to-end/src/e2e_p2p/gossip_network.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ describe('e2e_p2p_network', () => {
metricsPort: shouldCollectMetrics(),
initialConfig: {
...SHORTENED_BLOCK_TIME_CONFIG,
listenAddress: '127.0.0.1',
},
});

Expand Down
1 change: 1 addition & 0 deletions yarn-project/end-to-end/src/e2e_p2p/rediscovery.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ describe('e2e_p2p_rediscovery', () => {
metricsPort: shouldCollectMetrics(),
initialConfig: {
...SHORTENED_BLOCK_TIME_CONFIG,
listenAddress: '127.0.0.1',
},
});
await t.setupAccount();
Expand Down
6 changes: 5 additions & 1 deletion yarn-project/end-to-end/src/e2e_p2p/reex.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ describe('e2e_p2p_reex', () => {
basePort: bootNodeUdpPort,
// To collect metrics - run in aztec-packages `docker compose --profile metrics up` and set COLLECT_METRICS=true
metricsPort: shouldCollectMetrics(),
initialConfig: { enforceTimeTable: true, txTimeoutMs: 30_000 },
initialConfig: {
enforceTimeTable: true,
txTimeoutMs: 30_000,
listenAddress: '127.0.0.1',
},
});

t.logger.info('Setup account');
Expand Down
1 change: 1 addition & 0 deletions yarn-project/end-to-end/src/e2e_p2p/reqresp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ describe('e2e_p2p_reqresp_tx', () => {
metricsPort: shouldCollectMetrics(),
initialConfig: {
...SHORTENED_BLOCK_TIME_CONFIG,
listenAddress: '127.0.0.1',
},
});
await t.setupAccount();
Expand Down
1 change: 1 addition & 0 deletions yarn-project/end-to-end/src/e2e_p2p/slashing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ describe('e2e_p2p_slashing', () => {
basePort: BOOT_NODE_UDP_PORT,
metricsPort: shouldCollectMetrics(),
initialConfig: {
listenAddress: '127.0.0.1',
aztecEpochDuration: 1,
ethereumSlotDuration: 4,
aztecSlotDuration: 12,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ describe('e2e_p2p_governance_proposer', () => {
metricsPort: shouldCollectMetrics(),
initialConfig: {
...SHORTENED_BLOCK_TIME_CONFIG,
listenAddress: '127.0.0.1',
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ describe('e2e_p2p_validators_sentinel', () => {
basePort: BOOT_NODE_UDP_PORT,
initialConfig: {
...SHORTENED_BLOCK_TIME_CONFIG,
listenAddress: '127.0.0.1',
minTxsPerBlock: 0,
aztecEpochDuration: 48,
validatorReexecute: false,
Expand Down
Loading