Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 });

Expand Down Expand Up @@ -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 });
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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);

Expand Down
12 changes: 6 additions & 6 deletions e2e/testcafe-devextreme/tests/dataGrid/common/scrolling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 = {};
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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;
Expand Down
Loading