feat(frontend): add student identification screen as entry point

This commit is contained in:
SaidSoighiri94
2026-07-06 11:25:40 +02:00
parent e492220af4
commit 97faf3e9ee
6 changed files with 287 additions and 23 deletions
+3 -3
View File
@@ -2,10 +2,10 @@ import "package:flutter_test/flutter_test.dart";
import "package:eme_frontend/main.dart";
void main() {
testWidgets("L'accueil affiche les actions Emprunter et Restituer", (tester) async {
testWidgets("L'écran de démarrage affiche l'identification", (tester) async {
await tester.pumpWidget(const EmeApp());
expect(find.text("EMPRUNTER"), findsOneWidget);
expect(find.text("RESTITUER"), findsOneWidget);
expect(find.text("Bienvenue sur EME"), findsOneWidget);
expect(find.text("Scanner ma carte étudiante"), findsOneWidget);
});
}