Skip to content

Commit

Permalink
bump timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
klacabane committed Oct 20, 2021
1 parent 8b8aff8 commit 14397de
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ export function MonitoringElasticsearchNodesProvider({ getService, getPageObject
}

async clickRowByResolver(nodeResolver) {
await retry.waitForWithTimeout('redirection to node detail', 5000, async () => {
await testSubjects.click(SUBJ_NODE_LINK_PREFIX + nodeResolver, 1000);
return testSubjects.exists('elasticsearchNodeDetailStatus', { timeout: 1000 });
await retry.waitForWithTimeout('redirection to node detail', 30000, async () => {
await testSubjects.click(SUBJ_NODE_LINK_PREFIX + nodeResolver, 5000);
return testSubjects.exists('elasticsearchNodeDetailStatus', { timeout: 5000 });
});
}

Expand Down

0 comments on commit 14397de

Please sign in to comment.