From 29bbedf7aa7124da7c63bae881c71ade9178cabd Mon Sep 17 00:00:00 2001 From: Linus Hagemann Date: Mon, 1 Sep 2025 22:33:34 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=95:=20increase=20`protocolTimeout`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lively.headless/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lively.headless/index.js b/lively.headless/index.js index 1bc6f65ea0..9c8a4c827a 100644 --- a/lively.headless/index.js +++ b/lively.headless/index.js @@ -61,7 +61,9 @@ export class HeadlessSession { // However, removing this option lead to instant crashes of chromium on some of our machines and in CI. // Wo do not know why that is, since the flag was not necessary previous to the introduction of the docker setup. "--no-sandbox", - ] + ], + // Set to 120s as lively.lang tests began to time-out reliably and mysterously in CI + protocolTimeout: 120_000 })); return this.constructor.browser || newBrowser; }