15 lines
395 B
Dart
15 lines
395 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:floating_mini_games/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('floating mini games app boots', (tester) async {
|
|
await tester.pumpWidget(
|
|
const FloatingMiniGamesApp(
|
|
config: AppLaunchConfig(serverBase: 'http://127.0.0.1:8080'),
|
|
),
|
|
);
|
|
expect(find.text('小游戏大厅'), findsOneWidget);
|
|
});
|
|
}
|