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
parent
9b5ccf1fd0
commit
eeb1f02900
|
@ -65,11 +65,11 @@ void main() {
|
||||||
await tester.pumpAndSettle();
|
await tester.pumpAndSettle();
|
||||||
|
|
||||||
// Debug print to check the UI and role text
|
// Debug print to check the UI and role text
|
||||||
tester.allWidgets.forEach((widget) {
|
for (var widget in tester.allWidgets) {
|
||||||
if (widget is Text) {
|
if (widget is Text) {
|
||||||
debugPrint('Text widget: ${widget.data}');
|
debugPrint('Text widget: ${widget.data}');
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
|
||||||
// Assuming the role is displayed somewhere we can read
|
// Assuming the role is displayed somewhere we can read
|
||||||
// Adjust the role extraction to how your app displays the role
|
// Adjust the role extraction to how your app displays the role
|
||||||
|
|
Loading…
Reference in New Issue