fix tests

This commit is contained in:
Jonathan Rainville 2018-05-23 11:31:20 -04:00
parent 471a4b9efb
commit 61a5ba5e0a
2 changed files with 6 additions and 2 deletions

View File

@ -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"
}

View File

@ -10,7 +10,8 @@ describe('ProcessWrapper', () => {
before(() => {
sinon.stub(ProcessLauncher.prototype, '_subscribeToMessages');
processLauncher = new ProcessLauncher({
logger: new TestLogger({})
logger: new TestLogger({}),
modulePath: 'test.js'
});
});