This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
test: adds test coverage report to @ganache/cli, improve coverage #3735
base: develop
Are you sure you want to change the base?
test: adds test coverage report to @ganache/cli, improve coverage #3735
Changes from all commits
fcc4228
7a787f2
301c500
7dec4c0
9ed54db
20579ae
1da7911
9cc5b59
e5d7e60
295b1a3
75ffbb0
17732d7
dea1ddb
07a4b03
a74d0a3
1eaea51
cba7589
c39cae6
bc61cb1
f5650f2
90a2305
c1e5f43
757220b
c432c35
2dec992
773f21a
5fb72d1
9bf6064
d27e6bc
eafc679
e6ae996
eb14694
876b972
208b149
5f4b80d
6b61cba
7f36f1f
ac5aba0
bfc5cf9
1a52d4c
7a4c256
67d11fc
683c201
60ae164
1726ec9
0811874
485ff64
1701140
78a9d0c
04719a6
3ea9968
6a7f3b3
c5c0c31
bc8d269
aa72840
4e8f933
6b49cbb
0435951
959c6dc
dfb8b72
c495cc9
c16cb20
b272237
c85d022
359cb6b
f94442f
26af55e
d717d3f
393702c
0507aa4
d09c3d5
fba36c8
eea355b
f62d0bf
4d098ff
3a147c3
f11f58f
d364fab
29e6959
dcdcb91
6571c79
1dc6029
4e84063
ac57953
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Large diffs are not rendered by default.
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.
By default Yargs terminates the process if
--help
provided, or if validation fails.With this change, we will pass through if
--help
is provided (and return{ action: "help }
), and throw if validation fails.This allows us to test args validation more thoroughly, and we handle the thrown error in cli.ts
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.
As far as I can tell, this code path is unreachable, as the only valid flavors are "ethereum" and "filecoin", which are handled above.
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.
This is all being removed in another PR. This change will just add to the painful merge conflicts to come.
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.
This will conflict with #4070