feat(cli): remove output verbosity settings and logic

This commit is contained in:
Jarrod Whelan
2026-02-10 11:51:15 -08:00
parent f58d4ba696
commit fbfb2a72e3
15 changed files with 12 additions and 250 deletions

View File

@@ -171,18 +171,6 @@ describe('<HistoryItemDisplay />', () => {
expect(lastFrame()).toContain('Agent powering down. Goodbye!');
});
it('renders InfoMessage for "debug" type with gear icon', () => {
const item: HistoryItem = {
...baseItem,
type: MessageType.DEBUG,
text: 'Debug info',
};
const { lastFrame } = renderWithProviders(
<HistoryItemDisplay {...baseItem} item={item} />,
);
expect(lastFrame()).toContain('⚙ Debug info');
});
it('should escape ANSI codes in text content', () => {
const historyItem: HistoryItem = {
id: 1,