Skip to content

Commit

Permalink
Merge pull request #26 from JordyHers/feature/implement-generator
Browse files Browse the repository at this point in the history
implemented flutter asset generator.
  • Loading branch information
JordyHers committed Apr 29, 2023
2 parents bf9e968 + 20df711 commit ac6a888
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 ac6a888

Please sign in to comment.