Skip to content

Commit a46cf7d

Browse files
Unskip tests after chrome 133 update (DevExpress#29791)
1 parent 2be1d1b commit a46cf7d

7 files changed

+4
-9
lines changed

e2e/testcafe-devextreme/tests/navigation/menu/common.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}, {
0 Bytes
Loading
Loading
Loading
Loading

packages/devextreme/testing/tests/DevExpress.ui.widgets/contextMenu.async.tests.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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';

packages/devextreme/testing/tests/DevExpress.ui.widgets/drawer.tests.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)