diff --git a/packages/devextreme/testing/tests/DevExpress.ui.widgets.pivotGrid/sortable.tests.js b/packages/devextreme/testing/tests/DevExpress.ui.widgets.pivotGrid/sortable.tests.js index 9d72eb885e22..f9d0bd43a64f 100644 --- a/packages/devextreme/testing/tests/DevExpress.ui.widgets.pivotGrid/sortable.tests.js +++ b/packages/devextreme/testing/tests/DevExpress.ui.widgets.pivotGrid/sortable.tests.js @@ -197,7 +197,7 @@ QUnit.module('sortable without containers', () => { assert.equal($items.eq(3).text(), '4', 'item 3 text'); }); - QUnit.skip('horizontal dragging between lines', function(assert) { + QUnit.test('horizontal dragging between lines', function(assert) { createHorizontalMarkUp(HORIZONTAL_WIDTH_SMALL, true); const $sortable = $('#sortable').dxSortableOld({ @@ -225,11 +225,11 @@ QUnit.module('sortable without containers', () => { assert.equal($items.eq(1).text(), '3', 'item 1 text'); assert.equal($items.eq(2).text(), '4', 'item 2 text'); assert.equal($items.eq(3).text(), '5', 'item 3 text'); - assert.equal($items.eq(4).text(), '1', 'item 4 text'); - assert.equal($items.eq(5).text(), '6', 'item 5 text'); + assert.equal($items.eq(4).text(), '6', 'item 4 text'); + assert.equal($items.eq(5).text(), '1', 'item 5 text'); }); - QUnit.skip('horizontal dragging between lines to the end of the first line', function(assert) { + QUnit.test('horizontal dragging between lines to the end of the first line', function(assert) { createHorizontalMarkUp(HORIZONTAL_WIDTH_SMALL, true); const $sortable = $('#sortable').dxSortableOld({ @@ -490,7 +490,7 @@ QUnit.module('sortable without containers', () => { assert.ok(!changedArgs, 'changed called'); }); - QUnit.skip('dragging not allowed item', function(assert) { + QUnit.test('dragging not allowed item', function(assert) { let changedArgs; const $sortable = $('#sortable').dxSortableOld({ itemSelector: '.test-item', @@ -500,6 +500,8 @@ QUnit.module('sortable without containers', () => { } }); + $('