-
Notifications
You must be signed in to change notification settings - Fork 681
feat: add --flavor
feature (ganache chain plugins)
#4362
Changes from all commits
3f2d655
c9bdc9a
28eed02
e3fe9af
328abc9
82f0330
d40f30a
9912275
19765e7
a9a4e68
9edce5a
db54103
6ba2798
986a281
b74032a
40b8f4c
b4875b3
79a371d
9d235e6
3d7fbd0
160f13b
1fadb7c
05da030
fc3ff3a
71e9790
249e43e
4e9c01b
2514d70
39e973e
078cc0b
504de6a
879f26b
ae66e80
d96d35e
5ff2e05
5b6d3e9
225491f
fea1248
9a1163d
2388cb6
6e0449c
b8b9d31
2728355
0d119e0
9943157
cc62012
e0d4337
861d6bb
7b04571
565706d
ea81e2c
928e984
ed8d2e9
694496e
b1fdaf3
899dca4
2d6deab
12122c9
e351cae
60192de
78bbafc
195a914
82dbb01
3097f8e
b42258c
809891c
7cf6285
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ describe("@ganache/console.log", () => { | |
let from: string; | ||
|
||
before("set up a ganache provider", function () { | ||
this.timeout(10000); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because Ethereum ganache is lazy loaded, the first time we run it it might take a while, so I added this timeout. Previously it would take the same about of time, but it was just doing it before the tests started running. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it worth adding this as a comment in code? |
||
provider = Ganache.provider({ | ||
wallet: { deterministic: true, totalAccounts: 1 }, | ||
miner: { blockGasLimit: "0xfffffffff" }, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aligning the versions of
marked
we are using elsewhere.