We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ee146 commit 1b3efabCopy full SHA for 1b3efab
test/blur_hash_widget_test.dart
@@ -5,7 +5,7 @@ import 'package:flutter_blurhash/flutter_blurhash.dart';
5
void main() {
6
testWidgets('BlurHash widget basic smoke test', (WidgetTester tester) async {
7
const String testHash = 'LGF5]+Yk^6#M@-5c,1J5@[or[Q6.';
8
-
+
9
// Build a simple widget with just the BlurHash
10
await tester.pumpWidget(
11
MaterialApp(
@@ -25,10 +25,10 @@ void main() {
25
26
// Verify the BlurHash widget exists
27
expect(find.byType(BlurHash), findsOneWidget);
28
29
// Check the BlurHash properties
30
final BlurHash blurHash = tester.widget(find.byType(BlurHash));
31
expect(blurHash.hash, equals(testHash));
32
expect(blurHash.image, isNull);
33
});
34
-}
+}
0 commit comments