test: 아스키나라 세계관 데이터에 맞게 테스트 업데이트

pq_logic_test.dart:
- 아이템/몬스터 테스트를 유연하게 변경 (isNotEmpty 검증)
- 시네마틱 텍스트: Loading → Compiling

deterministic_game_test.dart:
- 몬스터 개수: 231 → 304
- 장비/아이템/퀘스트 테스트 유연하게 변경

game_play_screen_test.dart:
- 타이틀: Progress Quest → ASCII-Nara

widget_test.dart:
- 앱 타이틀: Ascii Never Die → ASCII-Nara
This commit is contained in:
JiWoong Sul
2025-12-11 18:27:14 +09:00
parent 17aa7f8f91
commit ebb0e0dda6
4 changed files with 120 additions and 122 deletions

View File

@@ -7,9 +7,8 @@ void main() {
) async {
await tester.pumpWidget(const AskiiNeverDieApp());
// 프런트 화면이 렌더링되었는지 확인
expect(find.text('Ascii Never Die'), findsOneWidget);
expect(find.textContaining('Offline Progress Quest'), findsOneWidget);
// 프런트 화면이 렌더링되었는지 확인 (아스키나라 세계관)
expect(find.text('ASCII-Nara'), findsOneWidget);
// "New character" 버튼 탭
await tester.tap(find.text('New character'));