mirror of
https://github.com/microsoft/playwright-mcp.git
synced 2025-07-26 08:32:26 +08:00
chore: allow for a lax timeout for gha bots
This commit is contained in:
parent
9f93af3a81
commit
cd214cb58d
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user