diff options
test - integration - throw error on failure
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/index.js | 4 |
1 files 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) } |