11 lines
328 B
Dart
11 lines
328 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:inou_mobile/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('App launches smoke test', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const InouApp());
|
|
// Just verify app launches without crashing
|
|
expect(find.byType(InouApp), findsOneWidget);
|
|
});
|
|
}
|