Add log to diagnose e2e tests

This commit is contained in:
Sander Declerck 2025-10-14 13:15:14 +02:00
parent d2c155afee
commit f4933b08d0
No known key found for this signature in database

View file

@ -116,6 +116,8 @@ export class DockerTestContainer {
const timeout = setTimeout(() => { const timeout = setTimeout(() => {
// Fallback in case the command doesn't finish in a reasonable time // 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 }); resolve({ allData, output: parseShellOutput(allData), command });
ptyProcess.removeListener("data", handleInput); ptyProcess.removeListener("data", handleInput);
}, 10000); }, 10000);