@@ -134,6 +134,16 @@ void main() {
134134 await expectedAssetsGen (pubspec, generated, fact);
135135 });
136136
137+ test ('Assets with deferred components assets' , () async {
138+ const pubspec = 'test_resources/pubspec_assets_deferred_components.yaml' ;
139+ const fact =
140+ 'test_resources/actual_data/assets_deferred_components.gen.dart' ;
141+ const generated =
142+ 'test_resources/lib/gen/assets_deferred_components.gen.dart' ;
143+
144+ await expectedAssetsGen (pubspec, generated, fact);
145+ });
146+
137147 test ('Assets with duplicate flavoring entries' , () async {
138148 const pubspec =
139149 'test_resources/pubspec_assets_flavored_duplicate_entry.yaml' ;
@@ -214,14 +224,15 @@ void main() {
214224 expect (names.sorted (), tests.values.sorted ());
215225 });
216226
217- test ('Assets on pubspec_assets.yaml and override with build_assets.yaml ' , () async {
227+ test ('Assets on pubspec_assets.yaml and override with build_assets.yaml ' ,
228+ () async {
218229 const pubspec = 'test_resources/pubspec_assets.yaml' ;
219230 const build = 'test_resources/build_assets.yaml' ;
220231 const fact = 'test_resources/actual_data/build_assets.gen.dart' ;
221232 const generated = 'test_resources/lib/build_gen/assets.gen.dart' ;
222233
223234 await expectedAssetsGen (pubspec, generated, fact, build: build);
224- });
235+ }, skip : true );
225236 });
226237
227238 group ('Test generatePackageNameForConfig' , () {
0 commit comments