We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a2a55 commit 2d4629aCopy full SHA for 2d4629a
tests/ipcMain/runtimeFileEditing.test.ts
@@ -31,6 +31,7 @@ import {
31
TEST_TIMEOUT_SSH_MS,
32
STREAM_TIMEOUT_LOCAL_MS,
33
STREAM_TIMEOUT_SSH_MS,
34
+ configureTestRetries,
35
} from "./helpers";
36
import {
37
isDockerAvailable,
@@ -63,6 +64,9 @@ let sshConfig: SSHServerConfig | undefined;
63
64
// ============================================================================
65
66
describeIntegration("Runtime File Editing Tools", () => {
67
+ // Add retries to handle potential AI flakiness (e.g. failing to call tools)
68
+ configureTestRetries(3);
69
+
70
beforeAll(async () => {
71
// Check if Docker is available (required for SSH tests)
72
if (!(await isDockerAvailable())) {
0 commit comments