From 0b9d73e2d163efed855a7c43d131ac7de448775e Mon Sep 17 00:00:00 2001 From: Overtorment Date: Sun, 20 May 2018 11:05:50 +0100 Subject: [PATCH] TST --- App.test.js | 4 ++++ screen/selftest.js | 1 - up-build-number.js | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/App.test.js b/App.test.js index fa088503..010ba6de 100644 --- a/App.test.js +++ b/App.test.js @@ -202,6 +202,10 @@ it('bip38 decodes', async () => { }); it('bip38 decodes slow', async () => { + if (process.env.USER === 'burn') { + // run only on circleCI + return; + } jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000; const bip38 = require('bip38'); const wif = require('wif'); diff --git a/screen/selftest.js b/screen/selftest.js index 213b1ba9..4077680f 100644 --- a/screen/selftest.js +++ b/screen/selftest.js @@ -134,7 +134,6 @@ export default class Selftest extends Component { fee = 0.0001; try { txHex = l.createTx(utxos, amount, fee, toAddr); - console.log(txHex); } catch (e) { errorMessage += e.message + '; '; isOk = false; diff --git a/up-build-number.js b/up-build-number.js index 66c99998..d6a13aef 100644 --- a/up-build-number.js +++ b/up-build-number.js @@ -2,4 +2,5 @@ let fs = require('fs'); var appjson = require('./app.json'); appjson.expo.ios.buildNumber++; appjson.expo.ios.buildNumber = appjson.expo.ios.buildNumber + ''; // casting to string +console.log(appjson.expo.version, '(', appjson.expo.ios.buildNumber, ')'); fs.writeFileSync('./app.json', JSON.stringify(appjson, null, 2));