13 lines
390 B
Dart
13 lines
390 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:handwerksfreund/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('App loads main navigation screen', (WidgetTester tester) async {
|
|
// Build our app and trigger a frame.
|
|
await tester.pumpWidget(const HandwerksfreundApp());
|
|
|
|
// Verify that the title 'Kunden' is found
|
|
expect(find.text('Kunden'), findsWidgets);
|
|
});
|
|
}
|