Skip to content

Commit 20403be

Browse files
unskip all tests
1 parent 26727d6 commit 20403be

File tree

42 files changed

+49
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+49
-75
lines changed

e2e/testcafe-devextreme/tests/common/pagination/accessibility.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createScreenshotsComparer } from 'devextreme-screenshot-comparer';
22
import Pagination from 'devextreme-testcafe-models/pagination';
33
import url from '../../../helpers/getPageUrl';
4-
import { isMaterial, testScreenshot } from '../../../helpers/themeUtils';
4+
import { testScreenshot } from '../../../helpers/themeUtils';
55
import { createWidget } from '../../../helpers/createWidget';
66

77
fixture.disablePageReloads`Pagination`
@@ -20,12 +20,6 @@ fixture.disablePageReloads`Pagination`
2020
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2121
const pagination = new Pagination('#container');
2222

23-
// TODO Chrome133: skipped during chrome update
24-
// Skipped all material theme
25-
if (isMaterial()) {
26-
return;
27-
}
28-
2923
await testScreenshot(
3024
t,
3125
takeScreenshot,
Loading

e2e/testcafe-devextreme/tests/common/pivotGrid/fieldPanel/dragAndDropFieldItems.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ import { MouseAction, MouseUpEvents } from '../../../../helpers/mouseUpEvents';
66
import { testScreenshot } from '../../../../helpers/themeUtils';
77
import { DRAG_MOUSE_OPTIONS } from '../const';
88

9-
// TODO Chrome133: skipped during chrome update
10-
fixture.skip.disablePageReloads`pivotGrid_fieldPanel_drag-n-drop`
9+
fixture.disablePageReloads`pivotGrid_fieldPanel_drag-n-drop`
1110
.page(url(__dirname, '../../../container.html'));
1211

1312
const PIVOT_GRID_SELECTOR = '#container';

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);
39.8 KB
Loading

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();
123 KB
Loading

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

Lines changed: 2 additions & 2 deletions
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);
@@ -76,7 +76,7 @@ test.meta({ unstable: true })('Row hover should display correctly when there are
7676

7777
await t.expect(dataRow.isHovered).ok();
7878

79-
await testScreenshot(t, takeScreenshot, 'treelist_row_hover_with_fixed_columns_(generic.light).png', { element: treeList.element });
79+
await testScreenshot(t, takeScreenshot, 'treelist_row_hover_with_fixed_columns.png', { element: treeList.element });
8080

8181
await t
8282
.expect(compareResults.isValid())

0 commit comments

Comments
 (0)