From ff593fa8fa4b07655409610bacc217139cf6c9a7 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sun, 15 Mar 2026 02:11:14 +0100 Subject: [PATCH] Capture stderr in E2E plugin creation step Keep stderr capture from the plugin creation child process to aid debugging if the command fails in the future. Signed-off-by: Patrik Oldsberg Made-with: Cursor --- packages/e2e-test/src/commands/runCommand.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/e2e-test/src/commands/runCommand.ts b/packages/e2e-test/src/commands/runCommand.ts index b5d951017d..a86e7f303d 100644 --- a/packages/e2e-test/src/commands/runCommand.ts +++ b/packages/e2e-test/src/commands/runCommand.ts @@ -392,13 +392,7 @@ async function createPlugin(options: { }); print('Waiting for plugin create script to be done'); - try { - await child.waitForExit(); - } catch (error) { - print(`stdout: ${stdout}`); - print(`stderr: ${stderr}`); - throw error; - } + await child.waitForExit(); const pluginDir = resolvePath( appDir,