mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
13 lines
374 B
Dart
13 lines
374 B
Dart
|
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
import 'package:meshcore_open/main.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
testWidgets('App loads successfully', (WidgetTester tester) async {
|
||
|
|
// Build our app and trigger a frame.
|
||
|
|
await tester.pumpWidget(const MeshCoreApp());
|
||
|
|
|
||
|
|
// Verify that the app title appears
|
||
|
|
expect(find.text('MeshCore Open'), findsOneWidget);
|
||
|
|
});
|
||
|
|
}
|