File tree Expand file tree Collapse file tree 1 file changed +15
-10
lines changed
packages/golden_toolkit/test Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -118,16 +118,21 @@ Future<void> main() async {
118118 final initialViewInsets = tester.binding.window.padding;
119119
120120 await tester.pumpWidgetBuilder (Container ());
121- await multiScreenGolden (tester, 'empty' , devices: [
122- const Device (
123- name: 'anything' ,
124- size: Size (50 , 75 ),
125- brightness: Brightness .light,
126- safeArea: EdgeInsets .all (4 ),
127- devicePixelRatio: 2.0 ,
128- textScale: 1.5 ,
129- )
130- ]);
121+ await multiScreenGolden (
122+ tester,
123+ 'empty' ,
124+ devices: [
125+ const Device (
126+ name: 'anything' ,
127+ size: Size (50 , 75 ),
128+ brightness: Brightness .light,
129+ safeArea: EdgeInsets .all (4 ),
130+ devicePixelRatio: 2.0 ,
131+ textScale: 1.5 ,
132+ )
133+ ],
134+ skip: ! Platform .isMacOS,
135+ );
131136
132137 expect (tester.binding.createViewConfiguration ().size, equals (size));
133138 expect (tester.binding.window.physicalSize, equals (initialSize));
You can’t perform that action at this time.
0 commit comments