Skip to content

Commit f6e52cb

Browse files
oxgeneralclaude
andcommitted
fix: increase delay in logs filter test for CI stability
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6a97bc4 commit f6e52cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/unit/tui/logs-filter-status.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ describe('Logs filter status bar', () => {
7575
const agents = [makeAgent({ id: 'a1', name: 'Backend A' })];
7676
const { lastFrame, stdin } = renderApp(agents);
7777
stdin.write('l'); // switch to logs tab
78-
await delay(50);
78+
await delay(100);
7979
// Press F to cycle type filter (from 'all' to a subset)
8080
stdin.write('F');
81-
await delay(50);
81+
await delay(100);
8282
const output = lastFrame()!;
8383
// Status bar should show type filter inline (e.g. "f:text")
8484
expect(output).toContain('f:');

0 commit comments

Comments
 (0)