Skip to content

Commit

Permalink
[Functional test] Increase the timeout on opening a saved visualizati…
Browse files Browse the repository at this point in the history
…on (#70952)

* fixes the flakiness on hybrid visualization test

* increase timeout to 20 sec to find and click the hybrid visualization
  • Loading branch information
stratoula authored Jul 8, 2020
1 parent bb96f5d commit 0ea7f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/page_objects/visualize_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export function VisualizePageProvider({ getService, getPageObjects }: FtrProvide

public async openSavedVisualization(vizName: string) {
const dataTestSubj = `visListingTitleLink-${vizName.split(' ').join('-')}`;
await testSubjects.click(dataTestSubj);
await testSubjects.click(dataTestSubj, 20000);
await header.waitUntilLoadingHasFinished();
}

Expand Down

0 comments on commit 0ea7f9f

Please sign in to comment.