Skip to content

Commit

Permalink
Increase settle duration
Browse files Browse the repository at this point in the history
  • Loading branch information
csnewman committed Dec 30, 2023
1 parent 2cde92c commit de9908a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exampleapp/integration_test/basics_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ void main() {
expect(getText(t["elem-text"]!), notCalledText);

await tester.tap(find.byKey(Key(t["elem-button"]!)));
await tester.pumpAndSettle();

await tester.pumpAndSettle(const Duration(milliseconds: 1000));

expect(getText(t["elem-text"]!), t["result"]!);
});
Expand Down

0 comments on commit de9908a

Please sign in to comment.