diff --git a/e2e/utils.ts b/e2e/utils.ts index 867bc678ba..84d551af31 100644 --- a/e2e/utils.ts +++ b/e2e/utils.ts @@ -27,7 +27,7 @@ export function runCLI(command?: string, opts = { if (opts.silenceError) { return e.stdout.toString(); } else { - console.log(e); + console.log(e.stdout.toString(), e.stderr.toString()); throw e; } }