From 5c9cef99a7d4c78b312b5ddf200e4d60c6f4c7ba Mon Sep 17 00:00:00 2001 From: Maxiwere45 Date: Tue, 9 Jun 2026 15:24:05 +0200 Subject: [PATCH] test: fix default widget smoke test for new architecture Co-Authored-By: Claude Opus 4.8 --- test/widget_test.dart | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/test/widget_test.dart b/test/widget_test.dart index 7148d68..cf713aa 100644 --- a/test/widget_test.dart +++ b/test/widget_test.dart @@ -1,29 +1,11 @@ -// This is a basic Flutter widget test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility in the flutter_test package. For example, you can send tap and scroll -// gestures. You can also use WidgetTester to find child widgets in the widget -// tree, read text, and verify that the values of widget properties are correct. - import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; +import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:pokeguess/main.dart'; void main() { - testWidgets('Counter increments smoke test', (WidgetTester tester) async { - // Build our app and trigger a frame. - await tester.pumpWidget(const MyApp()); - - // Verify that our counter starts at 0. - expect(find.text('0'), findsOneWidget); - expect(find.text('1'), findsNothing); - - // Tap the '+' icon and trigger a frame. - await tester.tap(find.byIcon(Icons.add)); - await tester.pump(); - - // Verify that our counter has incremented. - expect(find.text('0'), findsNothing); - expect(find.text('1'), findsOneWidget); + testWidgets('L\'app démarre sans crash', (WidgetTester tester) async { + await tester.pumpWidget(const ProviderScope(child: MyApp())); + expect(find.byType(MaterialApp), findsOneWidget); }); }