Skip to content

Commit a780db7

Browse files
committed
🤖 test: relax git rebase test timeout for CI
Change-Id: Icb54629c2c7b61abdc4645cec8c02e45da1972d2 Signed-off-by: Thomas Kosiewski <tk@coder.com>
1 parent b6d8710 commit a780db7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/node/services/tools/bash.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,13 +693,14 @@ describe("bash tool", () => {
693693
`;
694694

695695
const result = (await tool.execute!(
696-
{ script, timeout_secs: 5 },
696+
{ script, timeout_secs: 10 },
697697
mockToolCallOptions
698698
)) as BashToolResult;
699699

700700
const duration = performance.now() - startTime;
701701

702-
expect(duration).toBeLessThan(4000);
702+
// On slow CI runners, this can take longer than 4s
703+
expect(duration).toBeLessThan(9000);
703704
expect(result).toBeDefined();
704705
});
705706

0 commit comments

Comments
 (0)