13 lines
387 B
Dart
13 lines
387 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:traccar_client/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('TraccarClientApp smoke test', (WidgetTester tester) async {
|
|
// Build our app and trigger a frame.
|
|
await tester.pumpWidget(const TraccarClientApp());
|
|
|
|
// Verify the app title is displayed
|
|
expect(find.text('Traccar Client'), findsOneWidget);
|
|
});
|
|
}
|