mirror of https://github.com/embarklabs/embark.git
fix tests
This commit is contained in:
parent
ece09785a7
commit
3759738551
|
@ -124,5 +124,6 @@
|
|||
"adding %s to ipfs": "adding %s to ipfs",
|
||||
"DApp available at": "DApp available at",
|
||||
"successfully uploaded to ipfs": "successfully uploaded to ipfs",
|
||||
"finished building DApp and deploying to": "finished building DApp and deploying to"
|
||||
}
|
||||
"finished building DApp and deploying to": "finished building DApp and deploying to",
|
||||
"instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)": "instantiated js-ipfs object configured to the current environment (available if ipfs is enabled)"
|
||||
}
|
|
@ -38,7 +38,8 @@ describe('embark.Blockchain', function () {
|
|||
wsRPC: true,
|
||||
targetGasLimit: false,
|
||||
fast: false,
|
||||
light: false
|
||||
light: false,
|
||||
verbosity: undefined
|
||||
};
|
||||
let blockchain = new Blockchain(config, 'geth');
|
||||
|
||||
|
@ -75,7 +76,8 @@ describe('embark.Blockchain', function () {
|
|||
wsRPC: true,
|
||||
targetGasLimit: false,
|
||||
fast: false,
|
||||
light: false
|
||||
light: false,
|
||||
verbosity: undefined
|
||||
};
|
||||
let blockchain = new Blockchain(config, 'geth');
|
||||
|
||||
|
|
Loading…
Reference in New Issue