Files
BlockSeasons/test/widget_test.dart
T
airkjw 40528238b2 Scaffold Block Seasons Flutter app
flutter create (com.airkjw.blockseasons, iOS+Android), Riverpod,
shared_preferences, audioplayers, gen-l10n EN/KO wiring, app shell
with Home -> Game placeholder.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-11 12:55:59 +09:00

14 lines
380 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:block_seasons/app.dart';
void main() {
testWidgets('home screen shows title and play button', (tester) async {
await tester.pumpWidget(const BlockSeasonsApp());
await tester.pumpAndSettle();
expect(find.text('Block Seasons'), findsOneWidget);
expect(find.text('Play'), findsOneWidget);
});
}