diff --git a/lib/i18n/locales/en.json b/lib/i18n/locales/en.json index 20c160acd..23117f7ef 100644 --- a/lib/i18n/locales/en.json +++ b/lib/i18n/locales/en.json @@ -124,5 +124,6 @@ "adding %s to ipfs": "adding %s to ipfs", "DApp available at": "DApp available at", "successfully uploaded to ipfs": "successfully uploaded to ipfs", - "finished building DApp and deploying to": "finished building DApp and deploying to" -} + "finished building DApp and deploying to": "finished building DApp and deploying to", + "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)": "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)" +} \ No newline at end of file diff --git a/test/blockchain.js b/test/blockchain.js index bcb48d085..e9dfc40d5 100644 --- a/test/blockchain.js +++ b/test/blockchain.js @@ -38,7 +38,8 @@ describe('embark.Blockchain', function () { wsRPC: true, targetGasLimit: false, fast: false, - light: false + light: false, + verbosity: undefined }; let blockchain = new Blockchain(config, 'geth'); @@ -75,7 +76,8 @@ describe('embark.Blockchain', function () { wsRPC: true, targetGasLimit: false, fast: false, - light: false + light: false, + verbosity: undefined }; let blockchain = new Blockchain(config, 'geth');