add forceNetwork parameter and test it

This commit is contained in:
Manuel Araoz 2014-07-08 12:34:49 -03:00
commit 00cf32fc8d
3 changed files with 17 additions and 0 deletions

View file

@ -8,6 +8,7 @@ try {
} catch (e) {
var copay = require('../copay'); //node
}
var copayConfig = require('../config');
var Wallet = require('../js/models/core/Wallet');
var Structure = copay.Structure;
var Storage = require('./mocks/FakeStorage');
@ -950,4 +951,14 @@ describe('Wallet model', function() {
});
});
describe('#forceNetwork in config', function() {
it('should throw if network is different', function() {
var backup = copayConfig.forceNetwork;
copayConfig.forceNetwork = true;
config.networkName = 'livenet';
cachedCreateW2.should.throw(Error);
copayConfig.forceNetwork = backup;
});
});
});