File tree Expand file tree Collapse file tree 7 files changed +4
-9
lines changed
packages/devextreme/testing/tests/DevExpress.ui.widgets Expand file tree Collapse file tree 7 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -212,9 +212,7 @@ safeSizeTest('Menu delimiter appearance when orientation is horizontal', async (
212212 return createWidget ( 'dxMenu' , { items : menuItems } , '#container' ) ;
213213} ) ;
214214
215- // TODO Chrome133: skipped during chrome update
216- // safeSizeTest(..., [500, 500])
217- test . skip ( 'Menu delimiter appearance when orientation is vertical' , async ( t ) => {
215+ safeSizeTest ( 'Menu delimiter appearance when orientation is vertical' , async ( t ) => {
218216 const { takeScreenshot, compareResults } = createScreenshotsComparer ( t ) ;
219217 const menu = new Menu ( ) ;
220218
@@ -251,7 +249,7 @@ test.skip('Menu delimiter appearance when orientation is vertical', async (t) =>
251249 await t
252250 . expect ( compareResults . isValid ( ) )
253251 . ok ( compareResults . errorMessages ( ) ) ;
254- } ) . before ( async ( ) => {
252+ } , [ 500 , 500 ] ) . before ( async ( ) => {
255253 const menuItems = [ {
256254 text : 'Video Players' ,
257255 } , {
Original file line number Diff line number Diff line change @@ -67,8 +67,7 @@ QUnit.module('Context menu', () => {
6767 assert . strictEqual ( instance . option ( 'items' ) . length , 2 , 'items.length' ) ;
6868 } ) ;
6969
70- // TODO Chrome133: skipped during chrome update
71- QUnit . test . skip ( 'Context menu should have correct height on async render (T1258881)' , function ( assert ) {
70+ QUnit . test ( 'Context menu should have correct height on async render (T1258881)' , function ( assert ) {
7271 const done = assert . async ( ) ;
7372
7473 const menuTargetSelector = '#menuTarget' ;
Original file line number Diff line number Diff line change @@ -143,9 +143,7 @@ QUnit.module('Drawer behavior', () => {
143143 assert . equal ( $element . attr ( 'tabIndex' ) , undefined , 'tabIndex was removed' ) ;
144144 } ) ;
145145
146- // TODO Chrome133: skipped during chrome update
147- // true
148- [ false ] . forEach ( ( animationEnabled ) => {
146+ [ true , false ] . forEach ( ( animationEnabled ) => {
149147 QUnit . test ( `Toggle promise should be resolved after toggle finished (animationEnabled=${ animationEnabled } )` , function ( assert ) {
150148 assert . expect ( 1 ) ;
151149
You can’t perform that action at this time.
0 commit comments