@@ -63,8 +63,8 @@ test.describe('Data Explorer: Summary Panel', { tag: [tags.WIN, tags.WEB, tags.D
63
63
64
64
// search with no results
65
65
await dataExplorer . summaryPanel . search ( 'snickerdoodle' ) ;
66
- // await dataExplorer.summaryPanel.expectColumnCountToBe(0); <-- NEW: search isn't working
67
- // await dataExplorer.summaryPanel.expectEmptyState(); // <--- no empty state created in UI yet
66
+ await dataExplorer . summaryPanel . expectColumnCountToBe ( 0 ) ; < - - NEW : search isn 't working
67
+ //await dataExplorer.summaryPanel.expectEmptyState(); // <--- no empty state created in UI yet
68
68
} ) ;
69
69
70
70
test ( 'Summary Panel: Sort' , async function ( { app, openDataFile } ) {
@@ -92,10 +92,10 @@ test.describe('Data Explorer: Summary Panel', { tag: [tags.WIN, tags.WEB, tags.D
92
92
await dataExplorer . summaryPanel . expectColumnOrderToBe ( [ 'column9' , 'column8' , 'column7' , 'column6' , 'column5' , 'column4' , 'column3' , 'column2' , 'column1' , 'column0' ] ) ;
93
93
94
94
// verify changing sort retains expansion for correct column
95
- // await dataExplorer.summaryPanel.clearSort();
96
- // await dataExplorer.summaryPanel.expectSortToBeBy('Original');
97
- // await dataExplorer.summaryPanel.expectColumnOrderToBe(['column0', 'column1', 'column2', 'column3', 'column4', 'column5', 'column6', 'column7', 'column8', 'column9']);
98
- // await dataExplorer.summaryPanel.expectColumnToBe({ index: 0, name: 'column0', expanded: false });
99
- // await dataExplorer.summaryPanel.expectColumnToBe({ index: 9, name: 'column9', expanded: true });
95
+ await dataExplorer . summaryPanel . clearSort ( ) ;
96
+ await dataExplorer . summaryPanel . expectSortToBeBy ( 'Original' ) ;
97
+ await dataExplorer . summaryPanel . expectColumnOrderToBe ( [ 'column0' , 'column1' , 'column2' , 'column3' , 'column4' , 'column5' , 'column6' , 'column7' , 'column8' , 'column9' ] ) ;
98
+ await dataExplorer . summaryPanel . expectColumnToBe ( { index : 0 , name : 'column0' , expanded : false } ) ;
99
+ await dataExplorer . summaryPanel . expectColumnToBe ( { index : 9 , name : 'column9' , expanded : true } ) ;
100
100
} ) ;
101
101
} ) ;
0 commit comments