Skip to content

Commit

Permalink
implemented flutter asset generator.
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers committed Apr 29, 2023
1 parent aa29a99 commit 20df711
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/helpers/helpers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ class LogoTest {
final Finder lastItemFinder = find.byType(Image, skipOffstage: false).last;
final ImageProvider<Object> lastItem =
tester.widget<Image>(lastItemFinder).image;

if (kDebugMode) {
print(lastItem);
}
final AssetGenImage lastImage = items.last;
expectLater(lastImage.path, equals(items.last.path));
}
Expand Down

0 comments on commit 20df711

Please sign in to comment.