Skip to content

Commit

Permalink
chore: Teardown context in prover coordination test (#10257)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
spalladino authored Nov 27, 2024
1 parent b7b282c commit 7ea3888
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ describe('e2e_prover_coordination', () => {
await performEscrow(10000000n);
});

afterEach(async () => {
await snapshotManager.teardown();
});

const expectProofClaimOnL1 = async (expected: {
epochToProve: bigint;
basisPointFee: number;
Expand Down

0 comments on commit 7ea3888

Please sign in to comment.