add test too

This commit is contained in:
Jonathan Rainville 2018-09-05 12:35:45 -04:00
parent 3991880b44
commit 55bb028a13
1 changed files with 3 additions and 2 deletions

View File

@ -183,10 +183,11 @@ Config.prototype.loadBlockchainConfigFile = function() {
if (!configFilePath) {
this.blockchainConfig.default = true;
}
if(!this.blockchainConfig.account && !this.blockchainConfig.isDev && this.env !== 'development') {
if (!this.blockchainConfig.account && !this.blockchainConfig.isDev &&
this.env !== 'development' && this.env !== 'test') {
this.logger.warn(
__('Account settings are needed for this chain.' +
' Please put a valid address and possibly a password in your blockchain config or use a dev chain.')
' Please put a valid address and possibly a password in your blockchain config or use a dev chain.')
);
}
};