diff --git a/packages/cli/src/ui/components/Composer.test.tsx b/packages/cli/src/ui/components/Composer.test.tsx index 73765dcf04..956130fffe 100644 --- a/packages/cli/src/ui/components/Composer.test.tsx +++ b/packages/cli/src/ui/components/Composer.test.tsx @@ -308,19 +308,19 @@ describe('Composer', () => { expect(output).not.toContain('Should not show'); }); - it('does not render LoadingIndicator when waiting for confirmation', () => { + it('renders LoadingIndicator when waiting for confirmation', () => { const uiState = createMockUIState({ streamingState: StreamingState.WaitingForConfirmation, thought: { subject: 'Confirmation', - description: 'Should not show during confirmation', + description: 'Should show during confirmation', }, }); const { lastFrame } = renderComposer(uiState); const output = lastFrame(); - expect(output).not.toContain('LoadingIndicator'); + expect(output).toContain('LoadingIndicator'); }); it('does not render LoadingIndicator when a tool confirmation is pending', () => { diff --git a/packages/cli/src/ui/components/Footer.test.tsx b/packages/cli/src/ui/components/Footer.test.tsx index 4113060081..cd28462bcd 100644 --- a/packages/cli/src/ui/components/Footer.test.tsx +++ b/packages/cli/src/ui/components/Footer.test.tsx @@ -128,7 +128,7 @@ describe('