small fix, don't worry about it

This commit is contained in:
Tomas Dvorak
2026-04-10 12:05:40 +02:00
parent 7b7ed0083f
commit 5ab2773f98
55 changed files with 3240 additions and 483 deletions
@@ -18,7 +18,7 @@ void main() {
await tester.pumpAndSettle();
expect(find.text('Your Journey Awaits'), findsOneWidget);
expect(find.text('Your Time is Now'), findsOneWidget);
});
testWidgets('should display motivational message',
@@ -33,11 +33,11 @@ void main() {
await tester.pumpAndSettle();
expect(find.textContaining('goals'), findsOneWidget);
expect(find.textContaining('1356 days'), findsOneWidget);
expect(find.textContaining('dreams'), findsOneWidget);
});
testWidgets('should display start challenge button',
testWidgets('should display get started button',
(WidgetTester tester) async {
await tester.pumpWidget(
const ProviderScope(
@@ -49,7 +49,7 @@ void main() {
await tester.pumpAndSettle();
expect(find.text('Start Your Challenge'), findsOneWidget);
expect(find.text('Get Started'), findsOneWidget);
});
testWidgets('should display back button', (WidgetTester tester) async {
@@ -77,8 +77,8 @@ void main() {
await tester.pumpAndSettle();
// Should have step indicators
expect(find.byType(Container), findsWidgets);
expect(find.text('Step 3 of 3'), findsOneWidget);
expect(find.byType(LinearProgressIndicator), findsOneWidget);
});
});
}