diff --git a/e2e/testcafe-devextreme/tests/dataGrid/common/rowDragging.ts b/e2e/testcafe-devextreme/tests/dataGrid/common/rowDragging.ts index 4b223aae8cf1..ae15b840d010 100644 --- a/e2e/testcafe-devextreme/tests/dataGrid/common/rowDragging.ts +++ b/e2e/testcafe-devextreme/tests/dataGrid/common/rowDragging.ts @@ -468,7 +468,7 @@ test('Headers should not be hidden during auto scrolling when virtual scrollling }); // T1078513 -test.meta({ unstable: true })('Footer should not be hidden during auto scrolling when virtual scrollling is specified', async (t) => { +test('Footer should not be hidden during auto scrolling when virtual scrollling is specified', async (t) => { const dataGrid = new DataGrid('#container'); await t.drag(dataGrid.getDataRow(0).getDragCommand(), 0, 90, { speed: 0.1 }); @@ -570,7 +570,7 @@ test('The draggable element should be displayed correctly after horizontal scrol }); }); -test.meta({ unstable: true })('Dragging with scrolling should be prevented by e.cancel (T1179555)', async (t) => { +test('Dragging with scrolling should be prevented by e.cancel (T1179555)', async (t) => { const dataGrid = new DataGrid('#container'); await dataGrid.scrollBy(t, { top: 10000 }); @@ -661,7 +661,7 @@ test('The placeholder should have correct position after dragging the row to the })); // T1126013 -test.meta({ unstable: true })('toIndex should not be corrected when source item gets removed from DOM', async (t) => { +test('toIndex should not be corrected when source item gets removed from DOM', async (t) => { const fromIndex = 2; const toIndex = 4; @@ -787,7 +787,7 @@ test('Item should appear in a correct spot when dragging to a different page wit }); // T1179218 -test.meta({ unstable: true })('Rows should appear correctly during dragging when virtual scrolling is enabled and rowDragging.dropFeedbackMode = "push"', async (t) => { +test('Rows should appear correctly during dragging when virtual scrolling is enabled and rowDragging.dropFeedbackMode = "push"', async (t) => { const dataGrid = new DataGrid('#container'); const { takeScreenshot, compareResults } = createScreenshotsComparer(t); diff --git a/e2e/testcafe-devextreme/tests/dataGrid/common/scrolling.ts b/e2e/testcafe-devextreme/tests/dataGrid/common/scrolling.ts index 9cf12445ec6e..8fdfdcbab25c 100644 --- a/e2e/testcafe-devextreme/tests/dataGrid/common/scrolling.ts +++ b/e2e/testcafe-devextreme/tests/dataGrid/common/scrolling.ts @@ -225,7 +225,7 @@ test('DataGrid should not reset its top scroll position after cell modification }, })); -test.meta({ unstable: true })('Ungrouping after grouping should work correctly if row rendering mode is virtual', async (t) => { +test('Ungrouping after grouping should work correctly if row rendering mode is virtual', async (t) => { const dataGrid = new DataGrid('#container'); await t.expect(dataGrid.isReady()).ok(); @@ -494,7 +494,7 @@ test('Header container should have padding-right if grid has max-height and scro }); }); -test.meta({ unstable: true })('New virtual mode. A detail row should be rendered when the last master row is expanded', async (t) => { +test('New virtual mode. A detail row should be rendered when the last master row is expanded', async (t) => { const dataGrid = new DataGrid('#container'); await t.expect(dataGrid.isReady()).ok(); @@ -548,7 +548,7 @@ test.meta({ unstable: true })('New virtual mode. A detail row should be rendered }); }); -test.meta({ unstable: true })('New virtual mode. An adaptive row should be rendered when the last row is expanded', async (t) => { +test('New virtual mode. An adaptive row should be rendered when the last row is expanded', async (t) => { const dataGrid = new DataGrid('#container'); // act @@ -604,7 +604,7 @@ test.meta({ unstable: true })('New virtual mode. An adaptive row should be rende }); }); -test.meta({ unstable: true })('New virtual mode. Virtual rows should not be in view port', async (t) => { +test('New virtual mode. Virtual rows should not be in view port', async (t) => { const dataGrid = new DataGrid('#container'); const getVirtualRowInfo = ClientFunction(() => { const result: any = {}; @@ -883,7 +883,7 @@ test.meta({ browserSize: [800, 700] })('New mode. Rows should be rendered proper }); }); -test.meta({ unstable: true, browserSize: [800, 800] })('Rows are rendered properly when window content is scrolled (T1070388)', async (t) => { +test.meta({ browserSize: [800, 800] })('Rows are rendered properly when window content is scrolled (T1070388)', async (t) => { const dataGrid = new DataGrid('#container'); await t.expect(dataGrid.isReady()).ok(); @@ -1837,7 +1837,7 @@ test('DataGrid - The "row" parameter in the FocusedRowChanged event refers to a [true, false].forEach((nativeScroll) => { type TestCaseWindow = typeof window & { dataGridScrollableEventValues?: number[] }; - test.meta({ unstable: true })(`Should not scroll back on top with virtual scrolling and adaptive master detail (nativeScroll: ${nativeScroll}) [T1278804]`, async (t) => { + test(`Should not scroll back on top with virtual scrolling and adaptive master detail (nativeScroll: ${nativeScroll}) [T1278804]`, async (t) => { // NOTE: idx + 1 logic inside POM const adaptiveCellIdx = 101; const scrollValuesThreshold = 100;