Juego de deducción social para 3-20 jugadores. Modo un solo móvil completamente funcional. 1000 palabras en 10 categorías. Notas privadas, votación, adivinanza, revancha. Material 3 dark theme. Package: es.freetimelab.elimpostor
10 lines
289 B
Dart
10 lines
289 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:el_impostor/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('App carga correctamente', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const ElImpostorApp());
|
|
expect(find.text('El Impostor'), findsOneWidget);
|
|
});
|
|
}
|