Skip to content

Commit 7e00786

Browse files
build(deps): bump ganache-cli from 6.7.0 to 6.8.2
Also, in `dapps/tests/contracts` move the `this.timeout(0);` inside the `it(...)` for the expensive gas esimation (involving `SimpleStorage.methods.set`) because it otherwise doesn't seem to have an effect on the default 15 second timeout.
1 parent bfda1b3 commit 7e00786

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

dapps/tests/contracts/test/simple_storage_spec.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ config({
1313
});
1414

1515
contract("SimpleStorage", function () {
16-
this.timeout(0);
17-
1816
it("should set constructor value", async function () {
1917
let result = await SimpleStorage.methods.storedData().call();
2018
assert.strictEqual(parseInt(result, 10), 100);
2119
});
2220

2321
it("set storage value", async function () {
22+
this.timeout(0);
2423
const toSend = SimpleStorage.methods.set(150);
2524
const gas = await toSend.estimateGas();
2625
await toSend.send({gas});

packages/embark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"find-up": "2.1.0",
9191
"flatted": "0.2.3",
9292
"fs-extra": "8.1.0",
93-
"ganache-cli": "6.7.0",
93+
"ganache-cli": "6.8.2",
9494
"glob": "7.1.4",
9595
"globule": "1.2.1",
9696
"hosted-git-info": "2.7.1",

packages/plugins/ganache/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"dependencies": {
4747
"@babel/runtime-corejs3": "7.7.4",
4848
"core-js": "3.4.3",
49-
"ganache-cli": "6.7.0"
49+
"ganache-cli": "6.8.2"
5050
},
5151
"devDependencies": {
5252
"embark-solo": "^5.1.0-nightly.1",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10383,10 +10383,10 @@ [email protected]:
1038310383
resolved "https://registry.yarnpkg.com/fuzzy/-/fuzzy-0.1.3.tgz#4c76ec2ff0ac1a36a9dccf9a00df8623078d4ed8"
1038410384
integrity sha1-THbsL/CsGjap3M+aAN+GIweNTtg=
1038510385

10386-
ganache-cli@6.7.0:
10387-
version "6.7.0"
10388-
resolved "https://registry.yarnpkg.com/ganache-cli/-/ganache-cli-6.7.0.tgz#b59845578221bdf686cf124d007c5ee62e85a62f"
10389-
integrity sha512-9CZsClo9hl5MxGL7hkk14mie89Q94P0idh92jcV7LmppTYTCG7SHatuwcfqN7emFHArMt3fneN4QbH2do2N6Ow==
10386+
ganache-cli@6.8.2:
10387+
version "6.8.2"
10388+
resolved "https://registry.yarnpkg.com/ganache-cli/-/ganache-cli-6.8.2.tgz#357b5ea93f013a7f0fce4ede1b8bec8613e95dd3"
10389+
integrity sha512-FgsJx/hHh7A1/fmSQpNT5jxZ3dYEal4zQMqYyA8Bm7S6MgrVO48hIjnROn2JteubHY8Rob8LzxMkhEvoQce7WA==
1039010390
dependencies:
1039110391
ethereumjs-util "6.1.0"
1039210392
source-map-support "0.5.12"

0 commit comments

Comments
 (0)