diff options
author | kumavis <aaron@kumavis.me> | 2017-08-04 12:40:32 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2017-08-04 12:40:32 +0800 |
commit | 44616483e032241a63c49abec752aa8ef16551d2 (patch) | |
tree | 81db9fb4ce1078e3eaf1d76a1476b19a3f710566 | |
parent | 29dcadc346fec8c2ea66c84c72d6c65bc565162f (diff) | |
download | dexon-wallet-44616483e032241a63c49abec752aa8ef16551d2.tar.gz dexon-wallet-44616483e032241a63c49abec752aa8ef16551d2.tar.zst dexon-wallet-44616483e032241a63c49abec752aa8ef16551d2.zip |
test - integration - throw error on failure
-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 85f91d92..e9263c6c 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) } |