aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-06-23 20:41:17 +0800
committerDan Finlay <dan@danfinlay.com>2017-06-23 20:50:44 +0800
commit06706f6e1bc721ce8186d694f75b520c1e13124b (patch)
tree7b41f007ec77c07a8b28416a218605a48ffa6831 /test
parent027394b2058b31daa399c582c82f0c0b01571144 (diff)
parentf022c7c714e17faf9558839116ba90ca8082e6b1 (diff)
downloadtangerine-wallet-browser-06706f6e1bc721ce8186d694f75b520c1e13124b.tar.gz
tangerine-wallet-browser-06706f6e1bc721ce8186d694f75b520c1e13124b.tar.zst
tangerine-wallet-browser-06706f6e1bc721ce8186d694f75b520c1e13124b.zip
Merge branch 'master' into i1616-AddTokenAdding
Diffstat (limited to 'test')
-rw-r--r--test/integration/index.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/test/integration/index.js b/test/integration/index.js
index f2d656b0b..85f91d92b 100644
--- a/test/integration/index.js
+++ b/test/integration/index.js
@@ -9,13 +9,15 @@ var b = browserify()
// Remove old bundle
try {
fs.unlinkSync(bundlePath)
-} catch (e) {}
-var writeStream = fs.createWriteStream(bundlePath)
+ var writeStream = fs.createWriteStream(bundlePath)
-tests.forEach(function (fileName) {
- b.add(path.join(__dirname, 'lib', fileName))
-})
+ tests.forEach(function (fileName) {
+ b.add(path.join(__dirname, 'lib', fileName))
+ })
-b.bundle().pipe(writeStream)
+ b.bundle().pipe(writeStream)
+} catch (e) {
+ console.error('Integration build failure', e)
+}