1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

test - integration - throw error on failure

This commit is contained in:
kumavis 2017-08-03 21:40:32 -07:00
parent 29dcadc346
commit 44616483e0

View File

@ -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)
}