From eafed6068f54cd8e84e42a55373f33008201c6c0 Mon Sep 17 00:00:00 2001 From: Vadim <44135514+vodemn@users.noreply.github.com> Date: Thu, 21 Aug 2025 16:41:09 +0200 Subject: [PATCH] refined integration tests --- integration_test/logbook_test.dart | 9 +++++++++ 1 file changed, 9 insertions(+) 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();