fix tests
This commit is contained in:
parent
471a4b9efb
commit
61a5ba5e0a
|
@ -124,5 +124,8 @@
|
||||||
"Blockchain node is ready": "Blockchain node is ready",
|
"Blockchain node is ready": "Blockchain node is ready",
|
||||||
"terminating due to error": "terminating due to error",
|
"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?",
|
"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"
|
||||||
}
|
}
|
|
@ -10,7 +10,8 @@ describe('ProcessWrapper', () => {
|
||||||
before(() => {
|
before(() => {
|
||||||
sinon.stub(ProcessLauncher.prototype, '_subscribeToMessages');
|
sinon.stub(ProcessLauncher.prototype, '_subscribeToMessages');
|
||||||
processLauncher = new ProcessLauncher({
|
processLauncher = new ProcessLauncher({
|
||||||
logger: new TestLogger({})
|
logger: new TestLogger({}),
|
||||||
|
modulePath: 'test.js'
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue