Skip to content

Commit 7ea3888

Browse files
authored
chore: Teardown context in prover coordination test (#10257)
The network from the first test kept running in parallel while the second one ran. This should not cause issues for the second run since they use a different rollup contract on L1, but having two anvil test watchers could be having weird consequences.
1 parent b7b282c commit 7ea3888

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

yarn-project/end-to-end/src/prover-coordination/e2e_prover_coordination.test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,10 @@ describe('e2e_prover_coordination', () => {
128128
await performEscrow(10000000n);
129129
});
130130

131+
afterEach(async () => {
132+
await snapshotManager.teardown();
133+
});
134+
131135
const expectProofClaimOnL1 = async (expected: {
132136
epochToProve: bigint;
133137
basisPointFee: number;

0 commit comments

Comments
 (0)