first commit

This commit is contained in:
2026-04-29 12:53:22 +07:00
commit e6a30eddd3
394 changed files with 16408 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// Ignore for testing purposes
// ignore_for_file: prefer_const_constructors
import 'package:flutter_test/flutter_test.dart';
import 'package:frontend_eccp_mobile/app/app.dart';
import 'package:frontend_eccp_mobile/modules/auth/login/presentation/screen/login_page.dart';
void main() {
group('App', () {
testWidgets('renders CounterPage', (tester) async {
await tester.pumpWidget(App());
expect(find.byType(LoginPage), findsOneWidget);
});
});
}