Skip to content

Commit 14ebd09

Browse files
committed
fix(cli): increase timeout for flaky tmux integration test
1 parent fe0bd70 commit 14ebd09

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cli/src/__tests__/integration-tmux.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ describe.skipIf(!tmuxAvailable || !sdkBuilt)(
9292
`bun run ${CLI_PATH} --help; sleep 2`,
9393
])
9494

95-
// Wait for output
96-
await sleep(400)
95+
// Wait for output - give CLI time to start and render help
96+
await sleep(800)
9797

9898
let cleanOutput = ''
99-
for (let i = 0; i < 5; i += 1) {
100-
await sleep(200)
99+
for (let i = 0; i < 10; i += 1) {
100+
await sleep(300)
101101
const output = await tmux(['capture-pane', '-t', sessionName, '-p'])
102102
cleanOutput = stripAnsi(output)
103103
if (cleanOutput.includes('--agent')) {

0 commit comments

Comments
 (0)