add initial project files for Flutter app with platform-specific configs and basic routing setup
This commit is contained in:
11
test/widget_test.dart
Normal file
11
test/widget_test.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:rra_app/main.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('Map page shows route builder label', (WidgetTester tester) async {
|
||||
await tester.pumpWidget(const MyApp());
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
expect(find.text('London Route Builder'), findsOneWidget);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user