Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions apps/demos/testing/skipped-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,33 @@ export const skippedTests = {
jQuery: {
// WebGL initialization error at the provider. There is no point in adding a mask
Map: ['ProvidersAndTypes', 'Markers', 'Routes'],

// Remote WidgetsGalleryDataService is unstable
DataGrid: ['RemoteGrouping', 'RemoteVirtualScrolling', 'CustomDataSource'],
PivotGrid: ['WebAPIService'],
},
Angular: {
// WebGL initialization error at the provider. There is no point in adding a mask
Map: ['ProvidersAndTypes', 'Markers', 'Routes'],

// Remote WidgetsGalleryDataService is unstable
DataGrid: ['RemoteGrouping', 'RemoteVirtualScrolling', 'CustomDataSource'],
PivotGrid: ['WebAPIService'],
},
React: {
// WebGL initialization error at the provider. There is no point in adding a mask
Map: ['ProvidersAndTypes', 'Markers', 'Routes'],

// Remote WidgetsGalleryDataService is unstable
DataGrid: ['RemoteGrouping', 'RemoteVirtualScrolling', 'CustomDataSource'],
PivotGrid: ['WebAPIService'],
},
Vue: {
// WebGL initialization error at the provider. There is no point in adding a mask
Map: ['ProvidersAndTypes', 'Markers', 'Routes'],

// Remote WidgetsGalleryDataService is unstable
DataGrid: ['RemoteGrouping', 'RemoteVirtualScrolling', 'CustomDataSource'],
PivotGrid: ['WebAPIService'],
},
};
9 changes: 5 additions & 4 deletions apps/demos/utils/visual-tests/matrix-test-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,12 @@ export function shouldRunTestAtIndex(testIndex) {
return part === currentPart;
}

// Remote WidgetsGalleryDataService is unstable, so RemoteGrouping is skipped
const SKIPPED_TESTS = {
jQuery: {},
Angular: {},
Vue: {},
React: {},
jQuery: { DataGrid: ['RemoteGrouping'] },
Angular: { DataGrid: ['RemoteGrouping'] },
Vue: { DataGrid: ['RemoteGrouping'] },
React: { DataGrid: ['RemoteGrouping'] },
};

export function shouldSkipDemo(framework, component, demoName, skippedTests) {
Expand Down
Loading