From 1076d6bea820b643b43303ea6f0918c6f46d0eb4 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Mon, 13 Apr 2026 14:05:02 -0700 Subject: [PATCH] Undo timeout change --- test/e2e/DockerTestContainer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/DockerTestContainer.js b/test/e2e/DockerTestContainer.js index 4e831d3..cd48c4e 100644 --- a/test/e2e/DockerTestContainer.js +++ b/test/e2e/DockerTestContainer.js @@ -128,7 +128,7 @@ export class DockerTestContainer { console.log("Command timeout reached"); resolve({ allData, output: parseShellOutput(allData), command }); ptyProcess.removeListener("data", handleInput); - }, 30000); + }, 15000); function handleInput(data) { allData.push(data);