update blockchain config tests

This commit is contained in:
Iuri Matias 2017-10-19 19:16:08 -04:00
parent e23e4bc417
commit cd72a66c2b
1 changed files with 10 additions and 2 deletions

View File

@ -30,7 +30,11 @@ describe('embark.Blockchain', function () {
vmdebug: false, vmdebug: false,
whisper: true, whisper: true,
account: {}, account: {},
bootnodes: "" bootnodes: "",
wsApi: [ "eth", "web3", "net", "shh" ],
wsHost: "localhost",
wsOrigins: false,
wsPort: 8546
}; };
let blockchain = new Blockchain(config, 'geth'); let blockchain = new Blockchain(config, 'geth');
@ -59,7 +63,11 @@ describe('embark.Blockchain', function () {
vmdebug: false, vmdebug: false,
whisper: false, whisper: false,
account: {}, account: {},
bootnodes: "" bootnodes: "",
wsApi: [ "eth", "web3", "net", "shh" ],
wsHost: "localhost",
wsOrigins: false,
wsPort: 8546
}; };
let blockchain = new Blockchain(config, 'geth'); let blockchain = new Blockchain(config, 'geth');