Skip to content

Commit e1651a7

Browse files
author
Raushen
committed
Skip test via config
1 parent 7ac14ed commit e1651a7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ const scroll = ClientFunction((pixels) => {
1313
});
1414

1515
runManualTest('DataGrid', 'RemoteGrouping', (test) => {
16-
// Remote WidgetsGalleryDataService is unstable
17-
test.skip('RemoteGrouping', async (t) => {
16+
test('RemoteGrouping', async (t) => {
1817
const { takeScreenshot, compareResults } = createScreenshotsComparer(t);
1918

2019
await $('.dx-scrollable-container')();

apps/demos/utils/visual-tests/matrix-test-helper.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,12 @@ export function shouldRunTestAtIndex(testIndex) {
203203
return part === currentPart;
204204
}
205205

206+
// Remote WidgetsGalleryDataService is unstable, so RemoteGrouping is skipped
206207
const SKIPPED_TESTS = {
207-
jQuery: {},
208-
Angular: {},
209-
Vue: {},
210-
React: {},
208+
jQuery: { DataGrid: ['RemoteGrouping'] },
209+
Angular: { DataGrid: ['RemoteGrouping'] },
210+
Vue: { DataGrid: ['RemoteGrouping'] },
211+
React: { DataGrid: ['RemoteGrouping'] },
211212
};
212213

213214
export function shouldSkipDemo(framework, component, demoName, skippedTests) {

0 commit comments

Comments
 (0)