This commit is contained in:
Chris Tate
2026-01-10 12:17:39 -06:00
parent 6dc408e02f
commit 10466d7c4c
2 changed files with 8 additions and 3 deletions
+3 -3
View File
@@ -128,14 +128,14 @@ export async function sendCommand(command: Record<string, unknown>): Promise<Res
}
});
// Timeout after 60 seconds
// Timeout after 15 seconds (allows for 10s Playwright timeout + overhead)
setTimeout(() => {
if (!resolved) {
debug('Command timeout after 60s');
debug('Command timeout after 15s');
socket.destroy();
reject(new Error('Command timeout'));
}
}, 60000);
}, 15000);
});
}