@@ -30,8 +30,7 @@ describe("Sizing - Width", () => {
3030 } ) ;
3131 test ( "w-auto" , async ( ) => {
3232 expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
33- props : { } ,
34- warnings : { values : { width : "auto" } } ,
33+ props : { style : { width : "auto" } } ,
3534 } ) ;
3635 } ) ;
3736 test ( "w-min" , async ( ) => {
@@ -149,8 +148,7 @@ describe("Sizing - Height", () => {
149148 } ) ;
150149 test ( "h-auto" , async ( ) => {
151150 expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
152- props : { } ,
153- warnings : { values : { height : "auto" } } ,
151+ props : { style : { height : "auto" } } ,
154152 } ) ;
155153 } ) ;
156154 test ( "h-min" , async ( ) => {
@@ -268,8 +266,7 @@ describe("Sizing - Size", () => {
268266 } ) ;
269267 test ( "size-auto" , async ( ) => {
270268 expect ( await renderCurrentTest ( ) ) . toStrictEqual ( {
271- props : { } ,
272- warnings : { values : { width : "auto" , height : "auto" } } ,
269+ props : { style : { width : "auto" , height : "auto" } } ,
273270 } ) ;
274271 } ) ;
275272 test ( "size-min" , async ( ) => {
0 commit comments