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