@@ -134,6 +134,16 @@ void main() {
134
134
await expectedAssetsGen (pubspec, generated, fact);
135
135
});
136
136
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
+
137
147
test ('Assets with duplicate flavoring entries' , () async {
138
148
const pubspec =
139
149
'test_resources/pubspec_assets_flavored_duplicate_entry.yaml' ;
@@ -214,14 +224,15 @@ void main() {
214
224
expect (names.sorted (), tests.values.sorted ());
215
225
});
216
226
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 {
218
229
const pubspec = 'test_resources/pubspec_assets.yaml' ;
219
230
const build = 'test_resources/build_assets.yaml' ;
220
231
const fact = 'test_resources/actual_data/build_assets.gen.dart' ;
221
232
const generated = 'test_resources/lib/build_gen/assets.gen.dart' ;
222
233
223
234
await expectedAssetsGen (pubspec, generated, fact, build: build);
224
- });
235
+ }, skip : true );
225
236
});
226
237
227
238
group ('Test generatePackageNameForConfig' , () {
0 commit comments