Skip to content

Commit 7d932ec

Browse files
unskip all tests
1 parent 26727d6 commit 7d932ec

File tree

16 files changed

+34
-37
lines changed

16 files changed

+34
-37
lines changed

e2e/testcafe-devextreme/tests/common/pivotGrid/sort/localSort_T1150523.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const apiRequestMock = RequestMock()
4848
{ 'access-control-allow-origin': '*' },
4949
);
5050

51-
test.meta({ unstable: true })('Should sort without DataSource reload if scrolling mode isn\'t virtual', async (t) => {
51+
test('Should sort without DataSource reload if scrolling mode isn\'t virtual', async (t) => {
5252
const pivotGrid = new PivotGrid('#container');
5353
await t.addRequestHooks(requestLogger);
5454
const initialRequestCount = await requestLogger.count(() => true);
@@ -89,7 +89,7 @@ test.meta({ unstable: true })('Should sort without DataSource reload if scrollin
8989
await t.removeRequestHooks(apiRequestMock);
9090
});
9191

92-
test.meta({ unstable: true })('Should sort with DataSource reload if scrolling mode is virtual', async (t) => {
92+
test('Should sort with DataSource reload if scrolling mode is virtual', async (t) => {
9393
const pivotGrid = new PivotGrid('#container');
9494
await t.addRequestHooks(requestLogger);
9595
const initialRequestCount = await requestLogger.count(() => true);

e2e/testcafe-devextreme/tests/common/pivotGrid/virtualScrolling_T1210807.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const createData = (count, innerCount) => {
2525
return result;
2626
};
2727

28-
test.meta({ unstable: true })('Row fields overlap data fields if dataFieldArea is set to "row" and virtual scrolling is enabled (T1210807)', async (t) => {
28+
test('Row fields overlap data fields if dataFieldArea is set to "row" and virtual scrolling is enabled (T1210807)', async (t) => {
2929
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
3030
const pivotGrid = new PivotGrid('#container');
3131
const firstHeaderRow = pivotGrid.getRowsArea(2).getCell(0);

e2e/testcafe-devextreme/tests/common/treeList/markup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test('TreeList - Expand/collapse buttons are too close to column borders if the
5757
// visual: generic.light
5858
// visual: material.blue.light
5959
// visual: fluent.blue.light
60-
test.meta({ unstable: true })('TreeList screenshot when the first cell has a template', async (t) => {
60+
test('TreeList screenshot when the first cell has a template', async (t) => {
6161
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
6262
const treeList = new TreeList('#container');
6363

e2e/testcafe-devextreme/tests/common/treeList/rowDragging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ test('TreeList - Expand/collapse mechanism breaks after dragging action in the s
6464
});
6565

6666
[undefined, 200].forEach((height) => {
67-
test.meta({ unstable: true })(`TreeList - The W1025 warning occurs when dragging a row (height: ${height ?? 'not set'}). (T1280519)`, async (t) => {
67+
test(`TreeList - The W1025 warning occurs when dragging a row (height: ${height ?? 'not set'}). (T1280519)`, async (t) => {
6868
const treeList = new TreeList('#container');
6969

7070
await treeList.isReady();

e2e/testcafe-devextreme/tests/common/treeList/stickyColumns/stickyColumns.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ test.meta({ browserSize: [900, 800] })('Header hover should display correctly wh
6565
// visual: generic.light
6666
// visual: material.blue.light
6767
// visual: fluent.blue.light
68-
test.meta({ unstable: true })('Row hover should display correctly when there are fixed columns', async (t) => {
68+
test('Row hover should display correctly when there are fixed columns', async (t) => {
6969
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
7070
const treeList = new TreeList(TREE_LIST_SELECTOR);
7171
const dataRow = treeList.getDataRow(1);

e2e/testcafe-devextreme/tests/dataGrid/common/columnReordering.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ test('The column reordering should work correctly when there is a fixed column w
7373
}));
7474

7575
// T1038094
76-
test.meta({ unstable: true })('The separator should display correctly when dragging column', async (t) => {
76+
test('The separator should display correctly when dragging column', async (t) => {
7777
const dataGrid = new DataGrid('#container');
7878

7979
await dataGrid.moveHeader(0, 200, 5, true);

e2e/testcafe-devextreme/tests/dataGrid/common/grouping/grouping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ test('Grouping and filtering should be applied correctly when they change at run
338338
}));
339339

340340
// T1112573
341-
test.meta({ unstable: true })('Content should be rendered correctly after setting the grouping.autoExpandAll property to true when dataRowTemplate is given', async (t) => {
341+
test('Content should be rendered correctly after setting the grouping.autoExpandAll property to true when dataRowTemplate is given', async (t) => {
342342
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
343343
const dataGrid = new DataGrid('#container');
344344

e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.functional.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5258,7 +5258,7 @@ test('Focus events should be called when pressing the Ctrl + End key when virtua
52585258
})();
52595259
});
52605260

5261-
test.meta({ unstable: true })('Focus events should be called when pressing the Ctrl + End key when virtual scrolling and columns are enabled', async (t) => {
5261+
test('Focus events should be called when pressing the Ctrl + End key when virtual scrolling and columns are enabled', async (t) => {
52625262
// arrange
52635263
const dataGrid = new DataGrid('#container');
52645264

@@ -5328,7 +5328,7 @@ test.meta({ unstable: true })('Focus events should be called when pressing the C
53285328
})();
53295329
});
53305330

5331-
test.meta({ unstable: true })('Focus events should be called when pressing the Ctrl + End key when rowRenderingMode is \'virtual\'', async (t) => {
5331+
test('Focus events should be called when pressing the Ctrl + End key when rowRenderingMode is \'virtual\'', async (t) => {
53325332
// arrange
53335333
const dataGrid = new DataGrid('#container');
53345334

@@ -5397,7 +5397,7 @@ test.meta({ unstable: true })('Focus events should be called when pressing the C
53975397
})();
53985398
});
53995399

5400-
test.meta({ unstable: true })('Focus events should be called when pressing the Ctrl + End key when infinite scrolling is enabled', async (t) => {
5400+
test('Focus events should be called when pressing the Ctrl + End key when infinite scrolling is enabled', async (t) => {
54015401
// arrange
54025402
const dataGrid = new DataGrid('#container');
54035403

@@ -5623,7 +5623,7 @@ test('Focus events should be called when pressing the Ctrl + End key when virtua
56235623
})();
56245624
});
56255625

5626-
test.meta({ unstable: true })('Focus events should be called when pressing the Ctrl + End key when virtual columns, virtual scrolling and focusedRowEnabled are enabled', async (t) => {
5626+
test('Focus events should be called when pressing the Ctrl + End key when virtual columns, virtual scrolling and focusedRowEnabled are enabled', async (t) => {
56275627
// arrange
56285628
const dataGrid = new DataGrid('#container');
56295629

e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.visual.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ test('Navigate to first cell in the first row when pressing the Ctrl + Home key'
467467
},
468468
}));
469469

470-
test.meta({ unstable: true })('Navigate to last cell in the last row when virtual scrolling is enabled', async (t) => {
470+
test('Navigate to last cell in the last row when virtual scrolling is enabled', async (t) => {
471471
// arrange
472472
const dataGrid = new DataGrid('#container');
473473
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
@@ -534,7 +534,7 @@ test('Navigate to first cell in the first row when virtual scrolling is enabled'
534534
},
535535
}));
536536

537-
test.meta({ unstable: true })('Navigate to last cell in the last row when virtual scrolling and columns are enabled', async (t) => {
537+
test('Navigate to last cell in the last row when virtual scrolling and columns are enabled', async (t) => {
538538
// arrange
539539
const dataGrid = new DataGrid('#container');
540540
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
@@ -609,7 +609,7 @@ test('Navigate to first cell in the first row when virtual scrolling and columns
609609
}));
610610

611611
[true, false].forEach((useNative) => {
612-
test.meta({ unstable: true })(`${useNative ? 'Native' : 'Simulated'} scrolling: Focus should be on the first focusable cell when pressing the Ctrl + Home key when row dragging, virtual scrolling and columns are enabled`, async (t) => {
612+
test(`${useNative ? 'Native' : 'Simulated'} scrolling: Focus should be on the first focusable cell when pressing the Ctrl + Home key when row dragging, virtual scrolling and columns are enabled`, async (t) => {
613613
// arrange
614614
const dataGrid = new DataGrid('#container');
615615
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
@@ -653,7 +653,7 @@ test('Navigate to first cell in the first row when virtual scrolling and columns
653653
},
654654
}));
655655

656-
test.meta({ unstable: true })(`${useNative ? 'Native' : 'Simulated'} scrolling: Focus should be on the last focusable cell when pressing the Ctrl + Home key when row dragging, virtual scrolling and columns are enabled`, async (t) => {
656+
test(`${useNative ? 'Native' : 'Simulated'} scrolling: Focus should be on the last focusable cell when pressing the Ctrl + Home key when row dragging, virtual scrolling and columns are enabled`, async (t) => {
657657
// arrange
658658
const dataGrid = new DataGrid('#container');
659659
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);

e2e/testcafe-devextreme/tests/dataGrid/common/scrolling.ts

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ test('DataGrid should not reset its top scroll position after cell modification
224224
},
225225
}));
226226

227-
test.meta({ unstable: true })('Ungrouping after grouping should work correctly if row rendering mode is virtual', async (t) => {
227+
test('Ungrouping after grouping should work correctly if row rendering mode is virtual', async (t) => {
228228
const dataGrid = new DataGrid('#container');
229229

230230
await t.expect(dataGrid.isReady()).ok();
@@ -493,7 +493,7 @@ test('Header container should have padding-right if grid has max-height and scro
493493
});
494494
});
495495

496-
test.skip('New virtual mode. A detail row should be rendered when the last master row is expanded', async (t) => {
496+
test('New virtual mode. A detail row should be rendered when the last master row is expanded', async (t) => {
497497
const dataGrid = new DataGrid('#container');
498498

499499
await t.expect(dataGrid.isReady()).ok();
@@ -547,7 +547,7 @@ test.skip('New virtual mode. A detail row should be rendered when the last maste
547547
});
548548
});
549549

550-
test.skip('New virtual mode. An adaptive row should be rendered when the last row is expanded', async (t) => {
550+
test('New virtual mode. An adaptive row should be rendered when the last row is expanded', async (t) => {
551551
const dataGrid = new DataGrid('#container');
552552

553553
// act
@@ -603,7 +603,7 @@ test.skip('New virtual mode. An adaptive row should be rendered when the last ro
603603
});
604604
});
605605

606-
test.skip('New virtual mode. Virtual rows should not be in view port', async (t) => {
606+
test('New virtual mode. Virtual rows should not be in view port', async (t) => {
607607
const dataGrid = new DataGrid('#container');
608608
const getVirtualRowInfo = ClientFunction(() => {
609609
const result: any = {};
@@ -914,7 +914,8 @@ test.meta({ browserSize: [800, 800] })('Rows are rendered properly when window c
914914
// assert
915915
await t
916916
.expect(getWindowScrollPosition())
917-
.eql(3000);
917+
.eql(3000)
918+
.wait(300);
918919

919920
visibleRows = await dataGrid.apiGetVisibleRows();
920921

@@ -941,7 +942,8 @@ test.meta({ browserSize: [800, 800] })('Rows are rendered properly when window c
941942
// assert
942943
await t
943944
.expect(getWindowScrollPosition())
944-
.eql(3000);
945+
.eql(3000)
946+
.wait(300);
945947

946948
visibleRows = await dataGrid.apiGetVisibleRows();
947949

@@ -1005,7 +1007,7 @@ test.meta({ browserSize: [800, 800] })('Rows are rendered properly when window c
10051007
})());
10061008

10071009
// T1129252
1008-
test.meta({ unstable: true })('The data should display correctly after changing the dataSource and focusedRowIndex options when scroll position is at the end', async (t) => {
1010+
test('The data should display correctly after changing the dataSource and focusedRowIndex options when scroll position is at the end', async (t) => {
10091011
// arrange
10101012
const dataGrid = new DataGrid('#container');
10111013
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
@@ -1114,11 +1116,6 @@ test.meta({ browserSize: [800, 800] })('The page should not be changed when hidi
11141116
await dataGrid.apiEditCell(5, 1);
11151117
await dataGrid.apiCellValue(5, 1, 'test');
11161118

1117-
// assert
1118-
await t
1119-
.expect(dataGrid.getDataCell(19, 1).isModified)
1120-
.ok();
1121-
11221119
// act - simulate click on button
11231120
await dataGrid.hide();
11241121
await t.click(Selector('body'));
@@ -1178,7 +1175,7 @@ test.meta({ browserSize: [800, 800] })('The page should not be changed when hidi
11781175
fixture.disablePageReloads`Remote Scrolling`
11791176
.page(url(__dirname, '../../container.html'));
11801177

1181-
test.meta({ unstable: true })('Scroll to the bottom after expand several group', async (t) => {
1178+
test('Scroll to the bottom after expand several group', async (t) => {
11821179
const dataGrid = new DataGrid('#container');
11831180

11841181
const scrollToBottom = async () => {
@@ -1253,7 +1250,7 @@ test.meta({ unstable: true })('Scroll to the bottom after expand several group',
12531250
await t.removeRequestHooks(salesApiMock);
12541251
});
12551252

1256-
test.skip('New virtual mode. Virtual rows should not be in view port after scrolling large data (T1043156)', async (t) => {
1253+
test('New virtual mode. Virtual rows should not be in view port after scrolling large data (T1043156)', async (t) => {
12571254
const dataGrid = new DataGrid('#container');
12581255
const scrollbarVerticalThumbTrack = dataGrid.getScrollBarThumbTrack('vertical');
12591256

@@ -1328,7 +1325,7 @@ test.skip('New virtual mode. Virtual rows should not be in view port after scrol
13281325
});
13291326
});
13301327

1331-
test.meta({ unstable: true })('New virtual mode. Navigation to the last row if new row is added (T1069849)', async (t) => {
1328+
test('New virtual mode. Navigation to the last row if new row is added (T1069849)', async (t) => {
13321329
const dataGrid = new DataGrid('#container');
13331330

13341331
const addRowButton = dataGrid.getHeaderPanel().getAddRowButton();
@@ -1694,7 +1691,7 @@ test('The row alternation should display correctly when grouping and virtual scr
16941691
scrolling: { mode: 'virtual', useNative: false },
16951692
})));
16961693

1697-
test.meta({ unstable: true })('DataGrid - Gray boxes appear when the push method is used to remove rows in infinite scrolling mode (T1240079)', async (t) => {
1694+
test('DataGrid - Gray boxes appear when the push method is used to remove rows in infinite scrolling mode (T1240079)', async (t) => {
16981695
const dataGrid = new DataGrid('#container');
16991696
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
17001697
const data = [

0 commit comments

Comments
 (0)