Files
Edouard Marquez e3bc40fdf3 chore: Migration to Dart 3.8 (#6668)
* Migration to Dart 3.8

* New GA

* Fix dartdoc
2025-06-23 18:14:17 +02:00

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);
});
}