File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -214,13 +214,13 @@ void main() {
214
214
});
215
215
216
216
group ("Testing selectedIdEditStateProvider" , () {
217
- testWidgets (
218
- 'selectedIdEditStateProvider should have an initial value of null' ,
219
- (tester) async {
217
+ testWidgets ('It should have an initial value of null' , (tester) async {
220
218
await tester.pumpWidget (
221
219
const ProviderScope (
222
220
child: MaterialApp (
223
- home: CollectionPane (),
221
+ home: Scaffold (
222
+ body: CollectionPane (),
223
+ ),
224
224
),
225
225
),
226
226
);
@@ -237,7 +237,9 @@ void main() {
237
237
await tester.pumpWidget (
238
238
const ProviderScope (
239
239
child: MaterialApp (
240
- home: CollectionPane (),
240
+ home: Scaffold (
241
+ body: CollectionPane (),
242
+ ),
241
243
),
242
244
),
243
245
);
@@ -267,7 +269,9 @@ void main() {
267
269
await tester.pumpWidget (
268
270
const ProviderScope (
269
271
child: MaterialApp (
270
- home: CollectionPane (),
272
+ home: Scaffold (
273
+ body: CollectionPane (),
274
+ ),
271
275
),
272
276
),
273
277
);
@@ -303,7 +307,9 @@ void main() {
303
307
await tester.pumpWidget (
304
308
const ProviderScope (
305
309
child: MaterialApp (
306
- home: CollectionPane (),
310
+ home: Scaffold (
311
+ body: CollectionPane (),
312
+ ),
307
313
),
308
314
),
309
315
);
You can’t perform that action at this time.
0 commit comments