12 lines
344 B
Dart
12 lines
344 B
Dart
import 'package:fishiq_mobile/main.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('FishIQ launches successfully', (tester) async {
|
|
await tester.pumpWidget(const FishIQApp());
|
|
|
|
expect(find.text('FishIQ'), findsOneWidget);
|
|
expect(find.text('Plan smarter. Fish better.'), findsOneWidget);
|
|
});
|
|
}
|