From bb19c2d207c765ceb026316c69f66242e4ba8bc9 Mon Sep 17 00:00:00 2001 From: vsavkin Date: Wed, 4 Oct 2017 11:16:01 -0400 Subject: [PATCH] build: improve error output --- e2e/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }