Skip to content

Commit

Permalink
Unskip QUnit tests after updating Chrome to version 121 (DevExpress#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeniyKiyashko authored Jun 2, 2024
1 parent db79d9c commit 26e484c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/devextreme_npm_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
matrix:
CONSTEL: [jquery(1/4), jquery(2/4), jquery(3/4), jquery(4/4)]

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

Expand Down
4 changes: 2 additions & 2 deletions testing/tests/DevExpress.ui.widgets/listParts/commonTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3784,7 +3784,7 @@ QUnit.module('keyboard navigation', {
assert.equal(handler.callCount, 1);
});

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

QUnit.skip('Focusing widget when there is search editor', function(assert) {
QUnit.testInActiveWindow('Focusing widget when there is search editor', function(assert) {
const $element = $('#list').dxList({
dataSource: [1, 2, 3],
searchEnabled: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2480,7 +2480,7 @@ QUnit.test('item click changes radio button state only to true in single selecti
assert.strictEqual(radioButton.option('value'), true, 'item selected');
});

QUnit.skip('keyboard navigation should work with without selectAll checkbox', function(assert) {
QUnit.testInActiveWindow('keyboard navigation should work with without selectAll checkbox', function(assert) {
const $list = $('#templated-list').dxList({
focusStateEnabled: true,
items: ['0', '1'],
Expand Down
2 changes: 1 addition & 1 deletion testing/tests/DevExpress.ui.widgets/popup.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ QUnit.module('basic', () => {
assert.notOk(popup.bottomToolbar().hasClass(DISABLED_STATE_CLASS), 'class is removed from bottom toolbar');
});

QUnit.skip('popup should update zIndex on focus', function(assert) {
QUnit.testInActiveWindow('popup should update zIndex on focus', function(assert) {
const firstPopup = $('#popup').dxPopup({ visible: true, focusStateEnabled: true }).dxPopup('instance');
const secondPopup = $('#secondPopup').dxPopup({ visible: true, focusStateEnabled: true }).dxPopup('instance');
const baseZIndex = 1501;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ QUnit.module('active element blurring', {
});

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

0 comments on commit 26e484c

Please sign in to comment.