환경 초기화 및 벤더 리포지토리 스켈레톤 도입

This commit is contained in:
JiWoong Sul
2025-09-22 17:38:51 +09:00
commit 5c9de2594a
171 changed files with 13304 additions and 0 deletions

17
test/widget_test.dart Normal file
View File

@@ -0,0 +1,17 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:superport_v2/main.dart';
void main() {
testWidgets('로그인 버튼을 누르면 대시보드로 이동한다', (tester) async {
await tester.pumpWidget(const SuperportApp());
await tester.pumpAndSettle();
expect(find.text('Superport v2 로그인'), findsOneWidget);
await tester.tap(find.text('로그인'));
await tester.pumpAndSettle();
expect(find.text('대시보드'), findsOneWidget);
});
}