@@ -45,7 +45,7 @@ test('Popup should be centered regarding the container even if content dimension
4545} ) . before ( async ( ) => createWidget ( 'dxPopup' , {
4646 width : 'auto' ,
4747 height : 'auto' ,
48- contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : 100 , height : 100 } ) ,
48+ contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : '100px' , height : '100px' } ) ,
4949} , undefined , { disableFxAnimation : false } ) ) ;
5050
5151test ( 'Popup should be centered regarding the container even if popup dimension option is changed during animation' , async ( t ) => {
@@ -84,7 +84,7 @@ test('Popup should be centered regarding the container even if popup dimension o
8484} ) . before ( async ( ) => createWidget ( 'dxPopup' , {
8585 width : 'auto' ,
8686 height : 'auto' ,
87- contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : 100 , height : 100 } ) ,
87+ contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : '100px' , height : '100px' } ) ,
8888} , undefined , { disableFxAnimation : false } ) ) ;
8989
9090test ( 'Popup should be centered regarding the container even if content dimension is changed' , async ( t ) => {
@@ -123,7 +123,7 @@ test('Popup should be centered regarding the container even if content dimension
123123} ) . before ( async ( ) => createWidget ( 'dxPopup' , {
124124 width : 'auto' ,
125125 height : 'auto' ,
126- contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : 100 , height : 100 } ) ,
126+ contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : '100px' , height : '100px' } ) ,
127127 animation : null ,
128128} , undefined , { disableFxAnimation : false } ) ) ;
129129
@@ -225,7 +225,7 @@ test('Showing and shown events should be raised only once even after resize duri
225225} ) . before ( async ( ) => createWidget ( 'dxPopup' , {
226226 width : 'auto' ,
227227 height : 'auto' ,
228- contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : 100 , height : 100 } ) ,
228+ contentTemplate : ( ) => $ ( '<div>' ) . attr ( { id : 'content' } ) . css ( { width : '100px' , height : '100px' } ) ,
229229} , undefined , { disableFxAnimation : false } ) ) . after ( async ( ) => {
230230 await ClientFunction ( ( ) => {
231231 delete ( window as any ) . shownCallCount ;
0 commit comments