You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
374 B
13 lines
374 B
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);
|
|
});
|
|
}
|