diff --git a/lib/i18n/locales/en.json b/lib/i18n/locales/en.json index 76ea19a3..f23f3a21 100644 --- a/lib/i18n/locales/en.json +++ b/lib/i18n/locales/en.json @@ -124,5 +124,8 @@ "Blockchain node is ready": "Blockchain node is ready", "terminating due to error": "terminating due to error", "Unable to start the blockchain process. Is Geth installed?": "Unable to start the blockchain process. Is Geth installed?", - "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}.": "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}." + "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}.": "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}.", + "Error while downloading the file": "Error while downloading the file", + "Error while loading the content of ": "Error while loading the content of ", + "no contracts found": "no contracts found" } \ No newline at end of file diff --git a/test/processLauncher.js b/test/processLauncher.js index e0272be2..8fa8f238 100644 --- a/test/processLauncher.js +++ b/test/processLauncher.js @@ -10,7 +10,8 @@ describe('ProcessWrapper', () => { before(() => { sinon.stub(ProcessLauncher.prototype, '_subscribeToMessages'); processLauncher = new ProcessLauncher({ - logger: new TestLogger({}) + logger: new TestLogger({}), + modulePath: 'test.js' }); });