From 44616483e032241a63c49abec752aa8ef16551d2 Mon Sep 17 00:00:00 2001 From: kumavis Date: Thu, 3 Aug 2017 21:40:32 -0700 Subject: test - integration - throw error on failure --- test/integration/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/index.js b/test/integration/index.js index 85f91d92b..e9263c6c8 100644 --- a/test/integration/index.js +++ b/test/integration/index.js @@ -17,7 +17,7 @@ try { }) b.bundle().pipe(writeStream) -} catch (e) { - console.error('Integration build failure', e) +} catch (err) { + throw new Error('Integration tests build failure - ' + err.stack) } -- cgit v1.2.3