-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address book name save fix #6945
Conversation
3de78eb
to
2fe540a
Compare
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.
LGTM!
@@ -51,6 +50,7 @@ concurrently --kill-others \ | |||
'npm run sendwithprivatedapp' \ | |||
'sleep 5 && mocha test/e2e/incremental-security.spec' | |||
|
|||
export GANACHE_ARGS="$GANACHE_ARGS --deterministic --account=0x53CB0AB5226EEBF4D872113D98332C1555DC304443BEE1CF759D15798D3C55A9,25000000000000000000" |
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.
The $GANACHE_ARGS
here includes all of the previous exported values (e.g. it'll have each of the --account
flags listed one after another, along with the 3 instances of the --deterministic
flag).
I'm guessing this isn't what we want. This was broken already, but I'm mentioning in case it relates to the test failure.
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 could most easily be fixed by renaming the first case as BASE_GANACHE_ARGS
or something like that.
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.
Oh, that makes sense.
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.
Yeah, that could be another PR
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 has been addressed in #6970
Should fix issues with saving contacts.
Adds e2e tests to cover the following flow: