hot fix tests

This commit is contained in:
Jonathan Rainville 2018-06-14 16:28:29 -04:00
parent 94bb43fd57
commit fd1b9d80f9

View File

@ -51,6 +51,10 @@ describe('embark.Contracts', function() {
cb([]); cb([]);
}); });
events.setCommandHandler("blockchain:gasPrice", (cb) => {
cb(null, 100);
});
let contractsConfig = { let contractsConfig = {
"versions": { "versions": {
"web3.js": "1.0.0-beta", "web3.js": "1.0.0-beta",
@ -156,6 +160,10 @@ describe('embark.Contracts', function() {
cb([]); cb([]);
}); });
events.setCommandHandler("blockchain:gasPrice", (cb) => {
cb(null, 100);
});
let contractsConfig = { let contractsConfig = {
"versions": { "versions": {
"web3.js": "1.0.0-beta", "web3.js": "1.0.0-beta",