-
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
fix: remove check for changeX token from test #29752
Conversation
CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes. |
Builds ready [62079e0]
Page Load Metrics (2123 ± 83 ms)
Bundle size diffs [🚀 Bundle size reduced!]
|
The list we get from the api has this token
Which as you can see has the name changex instead of changeX. |
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, but maybe we should comment out the line of code rather than remove. Just as a reminder for later.
Builds ready [42fcfa0]
Page Load Metrics (1628 ± 49 ms)
Bundle size diffs
|
5fb877c
Builds ready [5fb877c]
Page Load Metrics (1772 ± 80 ms)
Bundle size diffs
|
Description
PR to temporarily fix flakey test in CI.
The error suggests that its looking for token "Changex" in the UI; while looking at the screenshot from CI the token imported is "changeX";
So the check in the test should be more like
await tokenList.check_tokenIsDisplayed('ChangeX');
and not
await tokenList.check_tokenIsDisplayed('Changex');
In this PR i have removed the check from the test to unblock CI.
Related issues
Fixes:
Related: #29750
Manual testing steps
Screenshots/Recordings
Before
After
Pre-merge author checklist
Pre-merge reviewer checklist