Skip to content

Commit

Permalink
remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
klacabane committed Oct 20, 2021
1 parent 86bbf9f commit ce2788b
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ export function MonitoringElasticsearchNodesProvider({ getService, getPageObject

const SUBJ_NODE_LINK_PREFIX = `${SUBJ_TABLE_BODY} > nodeLink-`;

const SUBJ_PAGE_LOADING = 'monitoringPageLoading';

return new (class ElasticsearchIndices {
async isOnListing() {
const pageId = await retry.try(() => testSubjects.find(SUBJ_LISTING_PAGE));
Expand All @@ -60,12 +58,6 @@ export function MonitoringElasticsearchNodesProvider({ getService, getPageObject
});
}

async waitForPageToFinishLoading() {
await retry.try(async () => {
await find.waitForDeletedByCssSelector(`[data-test-subj="${SUBJ_PAGE_LOADING}"]`, 5000);
});
}

async waitForTableToFinishLoading() {
await retry.try(async () => {
await find.waitForDeletedByCssSelector('.euiBasicTable-loading', 5000);
Expand Down

0 comments on commit ce2788b

Please sign in to comment.