feat(frontend): scaffold Flutter Web app with ENSUP home screen

This commit is contained in:
SaidSoighiri94
2026-07-06 10:37:21 +02:00
parent be7d095fc3
commit d12302e8a6
22 changed files with 1096 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
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 {
await tester.pumpWidget(const EmeApp());
expect(find.text("EMPRUNTER"), findsOneWidget);
expect(find.text("RESTITUER"), findsOneWidget);
});
}