Improved WatchValue

This commit is contained in:
Christien Rioux 2025-04-21 14:05:44 -04:00
parent 72b1434abc
commit e6c7c28746
89 changed files with 1891892 additions and 1807 deletions

View file

@ -11,14 +11,14 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:veilid_example/app.dart';
void main() {
testWidgets('Verify Platform version', (WidgetTester tester) async {
testWidgets('Verify Platform version', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that platform version is retrieved.
expect(
find.byWidgetPredicate(
(Widget widget) =>
(widget) =>
widget is Text && widget.data!.startsWith('Running on:'),
),
findsOneWidget,