Skip to content

Commit 1f6c64f

Browse files
fix renamed demos in tests
1 parent ec16f95 commit 1f6c64f

9 files changed

Lines changed: 27 additions & 27 deletions

apps/demos/testing/widgets/charts/CustomLegendMarkers.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { Selector as $ } from 'testcafe';
33
import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
44
import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils';
55

6-
fixture('Charts.CustomLegendMarkers')
6+
fixture('Charts.LegendMarkersCustomization')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, 600];
99
});
1010

11-
runManualTest('Charts', 'CustomLegendMarkers', (test) => {
12-
test('CustomLegendMarkers', async (t) => {
11+
runManualTest('Charts', 'LegendMarkersCustomization', (test) => {
12+
test('LegendMarkersCustomization', async (t) => {
1313
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1414

1515
await t.hover($('.dxl-marker').nth(1));

apps/demos/testing/widgets/charts/PieLabelsOverlapping.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { Selector as $ } from 'testcafe';
33
import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
44
import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils';
55

6-
fixture('PieWithResolvedLabelOverlapping')
6+
fixture('PieResolveLabelOverlap')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, 600];
99
});
1010

11-
runManualTest('Charts', 'PieWithResolvedLabelOverlapping', (test) => {
12-
test('PieWithResolvedLabelOverlapping', async (t) => {
11+
runManualTest('Charts', 'PieResolveLabelOverlap', (test) => {
12+
test('PieResolveLabelOverlap', async (t) => {
1313
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1414
const showSelectBoxItems = () => t.click($('.options .dx-dropdowneditor-input-wrapper input.dx-texteditor-input'));
1515
const selectItem = (index) => $('.dx-dropdowneditor-overlay .dx-list-item-content').nth(index);

apps/demos/testing/widgets/charts/ZoomingOnAreaSelection.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { Selector as $ } from 'testcafe';
33
import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
44
import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils';
55

6-
fixture('Charts.ZoomingOnAreaSelection')
6+
fixture('Charts.AreaSelectionZooming')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, 600];
99
});
1010

11-
runManualTest('Charts', 'ZoomingOnAreaSelection', (test) => {
12-
test('ZoomingOnAreaSelection. Drag', async (t) => {
11+
runManualTest('Charts', 'AreaSelectionZooming', (test) => {
12+
test('AreaSelectionZooming. Drag', async (t) => {
1313
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1414

1515
await t.drag($('.dxc-series circle').nth(7), 600, 200);

apps/demos/testing/widgets/common/DialogsAndNotificationsOverview.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils'
66
const IMAGES_CONTAINER_CLASS = 'images';
77
const ITEM_CONTENT_CLASS = 'item-content';
88

9-
fixture('Common.DialogsAndNotificationsOverview')
9+
fixture('Common.PopupAndNotificationsOverview')
1010
.before(async (ctx) => {
1111
ctx.initialWindowSize = [900, 600];
1212
});
1313

14-
runManualTest('Common', 'DialogsAndNotificationsOverview', (test) => {
15-
test('DialogsAndNotificationsOverview', async (t) => {
14+
runManualTest('Common', 'PopupAndNotificationsOverview', (test) => {
15+
test('PopupAndNotificationsOverview', async (t) => {
1616
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1717

1818
await t.click($(`.${IMAGES_CONTAINER_CLASS} .${ITEM_CONTENT_CLASS}`));

apps/demos/testing/widgets/datagrid/CellEditingAndEditingAPI.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { Selector as $ } from 'testcafe';
33
import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
44
import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils';
55

6-
fixture('DataGrid.CellEditingAndEditingAPI')
6+
fixture('DataGrid.CellEditing')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, 600];
99
});
1010

11-
runManualTest('DataGrid', 'CellEditingAndEditingAPI', (test) => {
12-
test('CellEditingAndEditingAPI', async (t) => {
11+
runManualTest('DataGrid', 'CellEditing', (test) => {
12+
test('CellEditing', async (t) => {
1313
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1414

1515
await t.click($('.dx-datagrid-rowsview').find('td').nth(2));

apps/demos/testing/widgets/datagrid/RowEditingAndEditingEvents.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { Selector as $ } from 'testcafe';
33
import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
44
import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils';
55

6-
fixture('DataGrid.RowEditingAndEditingEvents')
6+
fixture('DataGrid.RowEditing')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, 600];
99
});
1010

11-
runManualTest('DataGrid', 'RowEditingAndEditingEvents', (test) => {
12-
test('RowEditingAndEditingEvents', async (t) => {
11+
runManualTest('DataGrid', 'RowEditing', (test) => {
12+
test('RowEditing', async (t) => {
1313
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1414

1515
await t.click($('.dx-link-edit').nth(0));

apps/demos/testing/widgets/form/CustomomizeItem.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { createScreenshotsComparer } from 'devextreme-screenshot-comparer';
33
import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
44
import { testScreenshot } from '../../../utils/visual-tests/helpers/theme-utils';
55

6-
fixture('Form.CustomizeItem')
6+
fixture('Form.Toolbar')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, 800];
99
});
1010

11-
runManualTest('Form', 'CustomizeItem', (test) => {
12-
test('CustomizeItem', async (t) => {
11+
runManualTest('Form', 'Toolbar', (test) => {
12+
test('Toolbar', async (t) => {
1313
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1414

1515
await t.hover($('#helpedInfo'), {

apps/demos/testing/widgets/list/ItemDragging.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { runManualTest } from '../../../utils/visual-tests/matrix-test-helper';
33

44
const WINDOW_WIDTH = 600;
55

6-
fixture('List.ItemDragging')
6+
fixture('List.DragAndDrop')
77
.before(async (ctx) => {
88
ctx.initialWindowSize = [900, WINDOW_WIDTH];
99
});
1010

11-
runManualTest('List', 'ItemDragging', (test) => {
12-
test('ItemDragging', async (t) => {
11+
runManualTest('List', 'DragAndDrop', (test) => {
12+
test('DragAndDrop', async (t) => {
1313
const REORDER_HANDLE_CLASS = 'dx-list-reorder-handle';
1414
const LIST_CLASS = 'dx-list';
1515
const LIST_ITEM_CLASS = 'dx-list-item';

apps/demos/testing/widgets/scheduler/ToolbarCustomization.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ const SCREEN_SIZES = {
99
thin: [320, 600],
1010
};
1111

12-
fixture('Scheduler.ToolbarCustomization')
12+
fixture('Scheduler.Toolbar')
1313
.before(async (ctx) => {
1414
ctx.initialWindowSize = SCREEN_SIZES.wide;
1515
});
1616

17-
runManualTest('Scheduler', 'ToolbarCustomization', (test) => {
18-
test('ToolbarCustomization', async (t) => {
17+
runManualTest('Scheduler', 'Toolbar', (test) => {
18+
test('Toolbar', async (t) => {
1919
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2020
const scheduler = $('#scheduler');
2121
const menuButtonSelector = $('.dx-toolbar').find('.dx-toolbar-menu-container').find('.dx-button');

0 commit comments

Comments
 (0)