12 lines
376 B
Dart
12 lines
376 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:app_client/app.dart';
|
|
|
|
void main() {
|
|
testWidgets('App launches and shows AI Video home content', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const App());
|
|
await tester.pumpAndSettle();
|
|
expect(find.text('AI Video'), findsOneWidget);
|
|
expect(find.text('HOME'), findsOneWidget);
|
|
});
|
|
}
|