From f4933b08d00f82dc6089ce26d3c0c64aca937a8d Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Tue, 14 Oct 2025 13:15:14 +0200 Subject: [PATCH] Add log to diagnose e2e tests --- test/e2e/DockerTestContainer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/DockerTestContainer.js b/test/e2e/DockerTestContainer.js index 1a817eb..196afdb 100644 --- a/test/e2e/DockerTestContainer.js +++ b/test/e2e/DockerTestContainer.js @@ -116,6 +116,8 @@ export class DockerTestContainer { const timeout = setTimeout(() => { // Fallback in case the command doesn't finish in a reasonable time + // oxlint-disable-next-line no-console - having this log in CI helps diagnose issues + console.log("Command timeout reached"); resolve({ allData, output: parseShellOutput(allData), command }); ptyProcess.removeListener("data", handleInput); }, 10000);