13 lines
427 B
Dart
13 lines
427 B
Dart
// This is a basic Flutter widget test.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:odoo_loyalty_app/main.dart';
|
|
import 'package:odoo_loyalty_app/screens/login_screen.dart';
|
|
|
|
void main() {
|
|
testWidgets('App renders without crash', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const OdooLoyaltyApp(homeWidget: LoginScreen()));
|
|
expect(find.byType(OdooLoyaltyApp), findsOneWidget);
|
|
});
|
|
}
|