diff --git a/integration_test/logbook_test.dart b/integration_test/logbook_test.dart index ef3a5c8..f51ef11 100644 --- a/integration_test/logbook_test.dart +++ b/integration_test/logbook_test.dart @@ -72,6 +72,15 @@ void testLogbook(String description) { ), findsOneWidget, ); + expect( + find.descendant( + of: find.byWidgetPredicate( + (widget) => widget is PickerListTile && widget.title == S.current.film, + ), + matching: find.text(mockFilms.first.name), + ), + findsOneWidget, + ); await tester.openPickerAndSelect(S.current.film, S.current.notSet); await tester.pumpAndSettle();