Browse Source

TST

localNotifications
Overtorment 7 years ago
parent
commit
0b9d73e2d1
  1. 4
      App.test.js
  2. 1
      screen/selftest.js
  3. 1
      up-build-number.js

4
App.test.js

@ -202,6 +202,10 @@ it('bip38 decodes', async () => {
}); });
it('bip38 decodes slow', async () => { it('bip38 decodes slow', async () => {
if (process.env.USER === 'burn') {
// run only on circleCI
return;
}
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000; jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
const bip38 = require('bip38'); const bip38 = require('bip38');
const wif = require('wif'); const wif = require('wif');

1
screen/selftest.js

@ -134,7 +134,6 @@ export default class Selftest extends Component {
fee = 0.0001; fee = 0.0001;
try { try {
txHex = l.createTx(utxos, amount, fee, toAddr); txHex = l.createTx(utxos, amount, fee, toAddr);
console.log(txHex);
} catch (e) { } catch (e) {
errorMessage += e.message + '; '; errorMessage += e.message + '; ';
isOk = false; isOk = false;

1
up-build-number.js

@ -2,4 +2,5 @@ let fs = require('fs');
var appjson = require('./app.json'); var appjson = require('./app.json');
appjson.expo.ios.buildNumber++; appjson.expo.ios.buildNumber++;
appjson.expo.ios.buildNumber = appjson.expo.ios.buildNumber + ''; // casting to string 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)); fs.writeFileSync('./app.json', JSON.stringify(appjson, null, 2));

Loading…
Cancel
Save