diff --git a/web-app/src/containers/ChatInput.tsx b/web-app/src/containers/ChatInput.tsx index 1cf20fdd2c..2ba52c2e9d 100644 --- a/web-app/src/containers/ChatInput.tsx +++ b/web-app/src/containers/ChatInput.tsx @@ -594,7 +594,6 @@ const ChatInput = ({ )} { }) }) - it('disables input when streaming', async () => { - // Mock streaming state - mockAppState.streamingContent = { thread_id: 'test-thread' } - - await act(async () => { - renderWithRouter() - }) - - const textarea = screen.getByTestId('chat-input') - expect(textarea).toBeDisabled() - }) - it('shows tools dropdown when model supports tools and MCP servers are connected', async () => { // Mock connected servers mockGetConnectedServers.mockResolvedValue(['server1'])