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 788ecd5 commit 2620f1cCopy full SHA for 2620f1c
test/widgets/autocomplete_test.dart
@@ -330,6 +330,10 @@ void main() {
330
text: 'some',
331
selection: TextSelection(baseOffset: 1, extentOffset: 3)));
332
await tester.pump();
333
+ // Add an extra pump to account for any potential frame delays introduced
334
+ // by the post frame callback in RawAutocomplete's implementation.
335
+ await tester.pump();
336
+
337
check(controller.value)
338
..text.equals('some')
339
..selection.equals(
0 commit comments