From eeb1f02900ac9422ad9ecbc47f65676a199c8bd3 Mon Sep 17 00:00:00 2001 From: Oeyuu Date: Wed, 19 Jun 2024 12:08:45 +0200 Subject: [PATCH] App is complete and no bugs existing, test are all done and also working without errors. No warnings and no problems. Done 20240619-12:08 --- integration_test/app_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_test/app_test.dart b/integration_test/app_test.dart index 3e3943f..fee63ed 100644 --- a/integration_test/app_test.dart +++ b/integration_test/app_test.dart @@ -65,11 +65,11 @@ void main() { await tester.pumpAndSettle(); // Debug print to check the UI and role text - tester.allWidgets.forEach((widget) { + for (var widget in tester.allWidgets) { if (widget is Text) { debugPrint('Text widget: ${widget.data}'); } - }); + } // Assuming the role is displayed somewhere we can read // Adjust the role extraction to how your app displays the role