Skip to content

Commit

Permalink
try longer delay for enter Text
Browse files Browse the repository at this point in the history
  • Loading branch information
Grodien committed Nov 11, 2024
1 parent e1370b6 commit 2b3b555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions das_client/integration_test/test/train_search_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void main() {
expect(trainNumberText, findsOneWidget);

await tester.enterText(trainNumberText, '');
await tester.pump(Duration(milliseconds: 100));
await tester.pump(Duration(milliseconds: 500));
await tester.pumpAndSettle();

// check that the primary button is disabled
Expand Down Expand Up @@ -168,7 +168,7 @@ void main() {
expect(trainNumberText, findsOneWidget);

await tester.enterText(trainNumberText, '1234');
await tester.pump(Duration(milliseconds: 100));
await tester.pump(Duration(milliseconds: 500));
await tester.pumpAndSettle();

// check that the primary button is disabled
Expand Down

0 comments on commit 2b3b555

Please sign in to comment.