mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-06 18:25:11 +08:00
10 lines
269 B
Dart
10 lines
269 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:smooth_app/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('App Starts', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const SmoothApp());
|
|
expect(find.byType(SmoothApp), findsOneWidget);
|
|
});
|
|
}
|