Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matisiekpl committed Jan 30, 2024
1 parent 215ae47 commit 7c7518c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/routing_cubit_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void main() {
routingCubit.navigate(
warsaw, (pointsCubit.state as PointsLoadSuccess).aeds.first);
expect(routingCubit.state, isA<RoutingCalculatingInProgress>());
await Future.delayed(const Duration(seconds: 5));
await Future.delayed(const Duration(seconds: 20));
expect(routingCubit.state, isA<RoutingSuccess>());
expect((routingCubit.state as RoutingSuccess).trip.length,
greaterThanOrEqualTo(0));
Expand Down

0 comments on commit 7c7518c

Please sign in to comment.