12 lines
370 B
Dart
12 lines
370 B
Dart
import 'package:confivoice_mobile/main.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('ConfiVoice mobile renders home page', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const ConfiVoiceMobileApp());
|
|
|
|
expect(find.text('ConfiVoice'), findsOneWidget);
|
|
expect(find.text('Mulai Prediksi'), findsOneWidget);
|
|
});
|
|
}
|