Added somes pages
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Hydroxycarbamide 2022-05-08 23:56:23 +02:00
parent 6eb6f9809e
commit 511e8cda76
9 changed files with 204 additions and 40 deletions

View file

@ -16,15 +16,15 @@ void main() {
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0.
expect(find.text('A'), findsOneWidget);
expect(find.text('B'), findsNothing);
expect(find.text('Repositories'), findsOneWidget);
expect(find.text('More'), findsOneWidget);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add_outlined));
await tester.tap(find.byIcon(Icons.more_horiz_outlined));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('A'), findsNothing);
expect(find.text('B'), findsOneWidget);
expect(find.text('Repositories'), findsNothing);
expect(find.text('More'), findsWidgets);
});
}