We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab54810 commit 001a853Copy full SHA for 001a853
test/widgets/autocomplete_test.dart
@@ -224,6 +224,9 @@ void main() {
224
await tester.enterText(composeInputFinder, 'hi :');
225
await tester.enterText(composeInputFinder, 'hi :z');
226
await tester.pump();
227
+ // Add an extra pump to account for any potential frame delays introduced
228
+ // by the post frame callback in RawAutocomplete's implementation.
229
+ await tester.pump();
230
checkEmojiShown(expected: true, zzzOption);
231
checkEmojiShown(expected: true, buzzingOption);
232
checkEmojiShown(expected: true, zulipOption);
0 commit comments