Skip to content

Commit 0952ac3

Browse files
committed
fix(test): close tester in avm_check_circuit_custom_bc truncation afterEach
Same teardown leak as in simulator/.../apps_tests/custom_bc.test.ts: the third describe block's afterEach was missing await tester.close(), leaving the AvmProvingTester (which spawns an AvmSimulatorPool + CdbIpcServer) alive. Jest could not exit after the suite completed and was killed at the 600s CI timeout.
1 parent c7af54b commit 0952ac3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

yarn-project/bb-prover/src/avm_proving_tests/avm_check_circuit_custom_bc.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ describe('AVM custom bytecodes truncation', () => {
112112
});
113113

114114
afterEach(async () => {
115+
await tester.close();
115116
await worldStateService.close();
116117
});
117118

0 commit comments

Comments
 (0)