| 37 | vi.mock('./turn', () => { |
| 38 | // Define a mock class that has the same shape as the real Turn |
| 39 | class MockTurn { |
| 40 | pendingToolCalls = []; |
| 41 | // The run method is a property that holds our mock function |
| 42 | run = mockTurnRunFn; |
nothing calls this directly
no outgoing calls
no test coverage detected