Skip to content

Commit d848d3e

Browse files
committed
Fix types
1 parent d30033d commit d848d3e

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

backend/src/__tests__/read-docs-tool.test.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,6 @@ describe('read_docs tool with researcher agent', () => {
183183
spy: startUserInputSpy,
184184
})
185185

186-
const endUserInputSpy = spyOn(
187-
liveUserInputs,
188-
'endUserInput',
189-
).mockImplementation(() => {})
190-
mockedFunctions.push({
191-
name: 'liveUserInputs.endUserInput',
192-
spy: endUserInputSpy,
193-
})
194-
195186
const cancelUserInputSpy = spyOn(
196187
liveUserInputs,
197188
'cancelUserInput',

backend/src/__tests__/run-agent-step-tools.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ describe('runAgentStep - set_output tool', () => {
8989
// Mock live user inputs to always return true (simulating active session)
9090
spyOn(liveUserInputs, 'checkLiveUserInput').mockImplementation(() => true)
9191
spyOn(liveUserInputs, 'startUserInput').mockImplementation(() => {})
92-
spyOn(liveUserInputs, 'endUserInput').mockImplementation(() => {})
9392
spyOn(liveUserInputs, 'setSessionConnected').mockImplementation(() => {})
9493

9594
spyOn(websocketAction, 'requestFiles').mockImplementation(

0 commit comments

Comments
 (0)