-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Swaps 4038 trending e2e #27116
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
Closed
Closed
Swaps 4038 trending e2e #27116
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
dcd5f11
Initial working version
bfullam 3044394
Fix trending tokens sort layout
bfullam a670e7b
Reduce BridgeView diff noise
bfullam 34f748d
Remove already sorted bridge logic
bfullam a060a2e
Simplify Bridge chunk loading logic
bfullam 6c5786a
Simplify bridge chunk loading guards
bfullam 1eeae07
Merge remote-tracking branch 'origin/main' into swaps-4038-trending-t…
bfullam 49154c9
Merge branch 'main' into swaps-4038-trending-tokens
bfullam 0f5b98f
Fix bottom sheet layering issue
bfullam fa07482
Fix bottom sheet positioning
bfullam e22e322
Fix bottom sheet layering
bfullam 98f5ff3
Fix bottom sheet overlay issue
bfullam 7345e07
Fix bottom sheet placement
bfullam 39fda97
Fix bottom sheet rendering
bfullam 6ac722b
Fix bridge bottom sheet jitter
bfullam fb3108b
Fix bottom sheet layering jitter
bfullam ddc3059
Evaluate Trending List feature
bfullam 2797563
Merge branch 'main' into swaps-4038-trending-tokens
bfullam a88f454
Merge branch 'main' into swaps-4038-trending-tokens
bfullam 97eaf9e
Resolve BridgeView test errors
bfullam 0584f54
Fix Bridge UI tests errors
bfullam 3dcaa95
feat: add LD feature flag gate
bfullam cac8dcf
Update bridge component networks
bfullam ac6e4fc
Merge branch 'main' into swaps-4038-trending-tokens
bfullam e190d41
Merge branch 'main' into swaps-4038-trending-tokens
bfullam a128a45
Merge branch 'main' into swaps-4038-trending-tokens
bfullam a295f3b
Merge branch 'main' into swaps-4038-trending-tokens
bfullam 51730d2
Investigate Bridge test failure
bfullam ffee6e5
Use shared FilterButton in bridge
bfullam 40baecc
test: add e2e coverage
bfullam b837b83
Fix Bridge show more opacity
bfullam 9591b5f
Merge remote-tracking branch 'origin/main' into swaps-4038-trending-t…
bfullam 39cb2ce
chore: move swap trending e2e coverage to follow-up PR
bfullam 7e90d12
test: add smoke swap trending tokens e2e coverage
bfullam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
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.
New test assertions use
toBeTruthy()instead oftoBeOnTheScreen()Low Severity
Multiple newly added test assertions use
toBeTruthy()to verify element presence (e.g.,expect(getByTestId(...)).toBeTruthy()) instead oftoBeOnTheScreen(). This violates the unit testing guidelines rule: "ALWAYS usetoBeOnTheScreen()to assert element presence — NOTtoBeTruthy()ortoBeDefined()." Affected new assertions appear at lines 363, 366, 848, 887, 890, 924, 962, 964, and 1019.Additional Locations (2)
app/components/UI/Bridge/Views/BridgeView/BridgeView.test.tsx#L845-L848app/components/UI/Bridge/Views/BridgeView/BridgeView.test.tsx#L1017-L1020Triggered by project rule: Unit Testing Guidelines