We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b25db0 commit a4f2270Copy full SHA for a4f2270
test/widgets/action_sheet_test.dart
@@ -149,7 +149,8 @@ void main() {
149
// global store, per-account store, and message list get loaded
150
await tester.pumpAndSettle();
151
152
- await tester.longPress(find.byType(ZulipAppBar));
+ final topicRow = find.descendant(of: find.byType(ZulipAppBar), matching: find.text(topic));
153
+ await tester.longPress(topicRow);
154
// sheet appears onscreen; default duration of bottom-sheet enter animation
155
await tester.pump(const Duration(milliseconds: 250));
156
check(find.byType(BottomSheet)).findsOne();
0 commit comments