update tests
This commit is contained in:
parent
7b58a770d9
commit
7e8a594bf9
|
@ -4,7 +4,7 @@ var fs = require('../../core/fs.js');
|
|||
|
||||
var GethCommands = require('./geth_commands.js');
|
||||
|
||||
/*eslint complexity: ["error", 30]*/
|
||||
/*eslint complexity: ["error", 31]*/
|
||||
var Blockchain = function(options) {
|
||||
this.blockchainConfig = options.blockchainConfig;
|
||||
this.env = options.env || 'development';
|
||||
|
|
|
@ -35,7 +35,8 @@ describe('embark.Blockchain', function () {
|
|||
wsHost: "localhost",
|
||||
wsOrigins: false,
|
||||
wsPort: 8546,
|
||||
wsRPC: true
|
||||
wsRPC: true,
|
||||
targetGasLimit: false
|
||||
};
|
||||
let blockchain = new Blockchain(config, 'geth');
|
||||
|
||||
|
@ -69,7 +70,8 @@ describe('embark.Blockchain', function () {
|
|||
wsHost: "localhost",
|
||||
wsOrigins: false,
|
||||
wsPort: 8546,
|
||||
wsRPC: true
|
||||
wsRPC: true,
|
||||
targetGasLimit: false
|
||||
};
|
||||
let blockchain = new Blockchain(config, 'geth');
|
||||
|
||||
|
|
Loading…
Reference in New Issue