Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/widgets/emoji_reaction_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ void main() {

// Scroll to the very bottom of the list with a large offset.
await tester.drag(scrollViewFinder, Offset(0, -500));
await tester.pump();
await tester.pumpAndSettle(); // let overscroll finish
// The top edge of the list entries is out of view;
// the bottom is padded by 8px, the minimum padding, from the bottom
// edge of the scroll view.
Expand All @@ -637,7 +637,7 @@ void main() {

// Scroll to the very bottom of the list with a large offset.
await tester.drag(scrollViewFinder, Offset(0, -500));
await tester.pump();
await tester.pumpAndSettle(); // let overscroll finish
// The top edge of the list entries is out of view;
// the bottom edge is padded by 10px from the bottom edge of the scroll
// view, because the view bottom padding is larger than the minimum 8px.
Expand Down