Skip to content

Commit 26e484c

Browse files
Unskip QUnit tests after updating Chrome to version 121 (#27501)
1 parent db79d9c commit 26e484c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/devextreme_npm_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
matrix:
198198
CONSTEL: [jquery(1/4), jquery(2/4), jquery(3/4), jquery(4/4)]
199199

200-
runs-on: devextreme-shr2
200+
runs-on: ubuntu-latest
201201
name: Demos visual tests ${{ matrix.CONSTEL }}
202202
timeout-minutes: 20
203203

testing/tests/DevExpress.ui.widgets/listParts/commonTests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3784,7 +3784,7 @@ QUnit.module('keyboard navigation', {
37843784
assert.equal(handler.callCount, 1);
37853785
});
37863786

3787-
QUnit.skip('allow delete item using keyboard after set allowItemDeleting option from false to true', function(assert) {
3787+
QUnit.testInActiveWindow('allow delete item using keyboard after set allowItemDeleting option from false to true', function(assert) {
37883788
const $element = $('#list');
37893789
const $list = $element.dxList({
37903790
items: [1, 2, 3, 4],
@@ -3832,7 +3832,7 @@ QUnit.module('Search', () => {
38323832
assert.strictEqual(instance.option('searchValue'), '2', 'search value');
38333833
});
38343834

3835-
QUnit.skip('Focusing widget when there is search editor', function(assert) {
3835+
QUnit.testInActiveWindow('Focusing widget when there is search editor', function(assert) {
38363836
const $element = $('#list').dxList({
38373837
dataSource: [1, 2, 3],
38383838
searchEnabled: true,

testing/tests/DevExpress.ui.widgets/listParts/editingUITests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,7 @@ QUnit.test('item click changes radio button state only to true in single selecti
24802480
assert.strictEqual(radioButton.option('value'), true, 'item selected');
24812481
});
24822482

2483-
QUnit.skip('keyboard navigation should work with without selectAll checkbox', function(assert) {
2483+
QUnit.testInActiveWindow('keyboard navigation should work with without selectAll checkbox', function(assert) {
24842484
const $list = $('#templated-list').dxList({
24852485
focusStateEnabled: true,
24862486
items: ['0', '1'],

testing/tests/DevExpress.ui.widgets/popup.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ QUnit.module('basic', () => {
491491
assert.notOk(popup.bottomToolbar().hasClass(DISABLED_STATE_CLASS), 'class is removed from bottom toolbar');
492492
});
493493

494-
QUnit.skip('popup should update zIndex on focus', function(assert) {
494+
QUnit.testInActiveWindow('popup should update zIndex on focus', function(assert) {
495495
const firstPopup = $('#popup').dxPopup({ visible: true, focusStateEnabled: true }).dxPopup('instance');
496496
const secondPopup = $('#secondPopup').dxPopup({ visible: true, focusStateEnabled: true }).dxPopup('instance');
497497
const baseZIndex = 1501;

testing/tests/DevExpress.ui.widgets/scrollableParts/scrollable.main.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ QUnit.module('active element blurring', {
773773
});
774774

775775
const testBlurInNativeScrolling = function(platform, shouldBeBlurred) {
776-
QUnit.skip(platform + ': active element should' + (shouldBeBlurred ? '' : ' not') + ' be blurred (B250228)', function(assert) {
776+
QUnit.testInActiveWindow(platform + ': active element should' + (shouldBeBlurred ? '' : ' not') + ' be blurred (B250228)', function(assert) {
777777
if(!/webkit/i.exec(navigator.userAgent)) {
778778
assert.ok(true, 'this test run only in webkit');
779779
return;

0 commit comments

Comments
 (0)