From cd214cb58d33409e7546b7c904de7f8fe048081f Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Tue, 25 Mar 2025 21:54:38 -0700 Subject: [PATCH] chore: allow for a lax timeout for gha bots --- tests/fixtures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixtures.ts b/tests/fixtures.ts index 7248123..948f155 100644 --- a/tests/fixtures.ts +++ b/tests/fixtures.ts @@ -93,7 +93,7 @@ class MCPServer extends EventEmitter { return new Promise((resolve, reject) => { const timeoutId = setTimeout(() => { reject(new Error('Timeout waiting for message')); - }, options.timeout || 5000); + }, options.timeout || 15000); this._messageResolvers.push(message => { clearTimeout(timeoutId);