Skip to content

Commit 55b88a3

Browse files
committed
Enable checks in e2e test
1 parent 9ff0bb4 commit 55b88a3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/e2e/tests/data-explorer/data-explorer-summary-panel.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ test.describe('Data Explorer: Summary Panel', { tag: [tags.WIN, tags.WEB, tags.D
6363

6464
// search with no results
6565
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
6868
});
6969

7070
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
9292
await dataExplorer.summaryPanel.expectColumnOrderToBe(['column9', 'column8', 'column7', 'column6', 'column5', 'column4', 'column3', 'column2', 'column1', 'column0']);
9393

9494
// 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 });
100100
});
101101
});

0 commit comments

Comments
 (0)