Skip to content

Commit 607a1cb

Browse files
Demo scenarios tests: create a single entry point to allow skipping testing in a specific framework via skip list
1 parent 45f9783 commit 607a1cb

File tree

74 files changed

+115
-87
lines changed

Some content is hidden

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

74 files changed

+115
-87
lines changed

apps/demos/testing/widgets/accordion/Accordion.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fixture('Accordion.Overview')
1212
ctx.initialWindowSize = [900, 900];
1313
});
1414

15-
runManualTest('Accordion', 'Overview', ['jQuery', 'React', 'Angular', 'Vue'], (test) => {
15+
runManualTest('Accordion', 'Overview', (test) => {
1616
test('Custom Overview Appearance', async (t) => {
1717
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1818

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.Crosshair')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'Crosshair', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'Crosshair', (test) => {
1313
test('Chart.Crosshair', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.CustomAnnotations')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'CustomAnnotations', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'CustomAnnotations', (test) => {
1313
test('CustomAnnotations. Drag', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.CustomLegendMarkers')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'CustomLegendMarkers', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'CustomLegendMarkers', (test) => {
1313
test('CustomLegendMarkers', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fixture('Charts.Export')
77
ctx.initialWindowSize = [900, 600];
88
});
99

10-
runManualTest('Charts', 'ExportCustomMarkup', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
10+
runManualTest('Charts', 'ExportCustomMarkup', (test) => {
1111
test('Export', async (t) => {
1212
let isFileCreateForDownload = false;
1313

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.LoadDataOnDemand')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'LoadDataOnDemand', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'LoadDataOnDemand', (test) => {
1313
test('LoadDataOnDemand', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.Overview')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'Overview', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'Overview', (test) => {
1313
test('Tooltip', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('PieWithResolvedLabelOverlapping')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'PieWithResolvedLabelOverlapping', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'PieWithResolvedLabelOverlapping', (test) => {
1313
test('PieWithResolvedLabelOverlapping', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515
const showSelectBoxItems = () => t.click($('.options .dx-dropdowneditor-input-wrapper input.dx-texteditor-input'));

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.ZoomingAndScrollingAPI')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'ZoomingAndScrollingAPI', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'ZoomingAndScrollingAPI', (test) => {
1313
test('ZoomingAndScrollingAPI. RangeSelector drag', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('Charts.ZoomingOnAreaSelection')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('Charts', 'ZoomingOnAreaSelection', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('Charts', 'ZoomingOnAreaSelection', (test) => {
1313
test('ZoomingOnAreaSelection. Drag', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

apps/demos/testing/widgets/chat/Customization.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fixture('Chat.Customization')
1414
ctx.initialWindowSize = [900, 800];
1515
});
1616

17-
runManualTest('Chat', 'Customization', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
17+
runManualTest('Chat', 'Customization', (test) => {
1818
test('Customization', async (t) => {
1919
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2020

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fixture.skip('Common.DialogsAndNotificationsOverview')
1616
ctx.initialWindowSize = [900, 600];
1717
});
1818

19-
runManualTest('Common', 'DialogsAndNotificationsOverview', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
19+
runManualTest('Common', 'DialogsAndNotificationsOverview', (test) => {
2020
test('DialogsAndNotificationsOverview', async (t) => {
2121
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
2222

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fixture('Common.EditorAppearanceVariants')
1010
ctx.initialWindowSize = [900, 800];
1111
});
1212

13-
runManualTest('Common', 'EditorAppearanceVariants', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
13+
runManualTest('Common', 'EditorAppearanceVariants', (test) => {
1414
test('EditorAppearanceVariants', async (t) => {
1515
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1616

apps/demos/testing/widgets/contextmenu/ContextMenu.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fixture('ContextMenu.Templates')
1010

1111
const IMAGE_ID = 'image';
1212

13-
runManualTest('ContextMenu', 'Templates', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
13+
runManualTest('ContextMenu', 'Templates', (test) => {
1414
test('Custom Template Appearance', async (t) => {
1515
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1616

apps/demos/testing/widgets/contextmenu/ContextMenuScrolling.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fixture('ContextMenu.Scrolling')
1212
const TARGET_AREA = 'target-area';
1313
const MENU_ITEM_TEXT_CLASS = 'dx-menu-item-text';
1414

15-
runManualTest('ContextMenu', 'Scrolling', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
15+
runManualTest('ContextMenu', 'Scrolling', (test) => {
1616
test('Custom Template Appearance', async (t) => {
1717
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1818

apps/demos/testing/widgets/contextmenu/ContextMenuShare.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fixture('ContextMenu.Templates')
1212
ctx.initialWindowSize = [900, 600];
1313
});
1414

15-
runManualTest('ContextMenu', 'Templates', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
15+
runManualTest('ContextMenu', 'Templates', (test) => {
1616
test('Custom Template Share Appearance', async (t) => {
1717
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1818

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.AdvancedMasterDetailView')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'AdvancedMasterDetailView', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'AdvancedMasterDetailView', (test) => {
1313
test('AdvancedMasterDetailView', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.AjaxRequest')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'AjaxRequest', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'AjaxRequest', (test) => {
1313
test('AjaxRequest', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.Appearance')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'Appearance', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'Appearance', (test) => {
1313
test('Appearance', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.BatchEditing')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'BatchEditing', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'BatchEditing', (test) => {
1313
test('BatchEditing', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.BatchUpdateRequest')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'BatchUpdateRequest', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'BatchUpdateRequest', (test) => {
1313
test('BatchUpdateRequest', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.CellEditingAndEditingAPI')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'CellEditingAndEditingAPI', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'CellEditingAndEditingAPI', (test) => {
1313
test('CellEditingAndEditingAPI', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const newRowPositionTestTemplate = ({ newRowPosition, pageNumber }) => async (t)
4545
.ok(compareResults.errorMessages());
4646
};
4747

48-
runManualTest('DataGrid', 'CustomNewRecordPosition', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
48+
runManualTest('DataGrid', 'CustomNewRecordPosition', (test) => {
4949
newRowPositionOptions.forEach((newRowPosition) => {
5050
test(`newRowPosition - ${newRowPosition}`, newRowPositionTestTemplate({
5151
newRowPosition,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.DataValidation')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'DataValidation', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'DataValidation', (test) => {
1313
test('DataValidation', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.EditStateManagement')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'EditStateManagement', ['jQuery', /* 'React', */ 'Vue'/* , 'Angular' */], (test) => {
12+
runManualTest('DataGrid', 'EditStateManagement', (test) => {
1313
test('EditStateManagement - update row', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

@@ -47,7 +47,7 @@ runManualTest('DataGrid', 'EditStateManagement', ['jQuery', /* 'React', */ 'Vue'
4747
});
4848
});
4949

50-
runManualTest('DataGrid', 'EditStateManagement', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
50+
runManualTest('DataGrid', 'EditStateManagement', (test) => {
5151
test('EditStateManagement - insert row', async (t) => {
5252
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
5353

@@ -98,7 +98,7 @@ runManualTest('DataGrid', 'EditStateManagement', ['jQuery', 'React', 'Vue', 'Ang
9898
});
9999
});
100100

101-
runManualTest('DataGrid', 'EditStateManagement', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
101+
runManualTest('DataGrid', 'EditStateManagement', (test) => {
102102
test('EditStateManagement - remove row', async (t) => {
103103
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
104104

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.Filtering')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'Filtering', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'Filtering', (test) => {
1313
test('Filtering', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.FilteringAPI')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'FilteringAPI', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'FilteringAPI', (test) => {
1313
test('FilteringAPI', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.GroupSummaries')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'GroupSummaries', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'GroupSummaries', (test) => {
1313
test('GroupSummaries', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.InfiniteScrolling')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'InfiniteScrolling', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'InfiniteScrolling', (test) => {
1313
test('InfiniteScrolling', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.MasterDetailAPI')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'MasterDetailAPI', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'MasterDetailAPI', (test) => {
1313
test('MasterDetailAPI', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.MasterDetailView')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'MasterDetailView', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'MasterDetailView', (test) => {
1313
test('MasterDetailView', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.MultipleRecordSelectionAPI')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'MultipleRecordSelectionAPI', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'MultipleRecordSelectionAPI', (test) => {
1313
test('MultipleRecordSelectionAPI', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.MultipleSorting')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'MultipleSorting', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'MultipleSorting', (test) => {
1313
test('MultipleSorting', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.OdataService')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'OdataService', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'OdataService', (test) => {
1313
test('OdataService', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.PopupEditing')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'PopupEditing', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'PopupEditing', (test) => {
1313
test('PopupEditing', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.RecordGrouping')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'RecordGrouping', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'RecordGrouping', (test) => {
1313
test('RecordGrouping', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.RecordPaging')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'RecordPaging', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'RecordPaging', (test) => {
1313
test('RecordPaging', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const scroll = ClientFunction((pixels) => {
1313
document.querySelector('.dx-scrollable-container').scrollTop = pixels;
1414
});
1515

16-
runManualTest('DataGrid', 'RemoteGrouping', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
16+
runManualTest('DataGrid', 'RemoteGrouping', (test) => {
1717
test('RemoteGrouping', async (t) => {
1818
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1919

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.RowEditingAndEditingEvents')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'RowEditingAndEditingEvents', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'RowEditingAndEditingEvents', (test) => {
1313
test('RowEditingAndEditingEvents', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.SimpleArray')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'SimpleArray', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'SimpleArray', (test) => {
1313
test('SimpleArray', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.StatePersistence')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'StatePersistence', ['jQuery', /* 'React', */ 'Vue'/* , 'Angular' */], (test) => {
12+
runManualTest('DataGrid', 'StatePersistence', (test) => {
1313
test('StatePersistence', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fixture('DataGrid.ToolbarCustomization')
99
ctx.initialWindowSize = [900, 600];
1010
});
1111

12-
runManualTest('DataGrid', 'ToolbarCustomization', ['jQuery', 'React', 'Vue', 'Angular'], (test) => {
12+
runManualTest('DataGrid', 'ToolbarCustomization', (test) => {
1313
test('ToolbarCustomization', async (t) => {
1414
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1515
const menuButtonSelector = $('.dx-toolbar').find('.dx-toolbar-menu-container').find('.dx-button');

0 commit comments

Comments
 (0)