Skip to content

Commit

Permalink
increase timeout (#138536)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored Aug 11, 2022
1 parent c890ca0 commit 5dba807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/test/functional/page_objects/lens_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function LensPageProvider({ getService, getPageObjects }: FtrProviderCont
async assertExpectedText(selector: string, test: (value?: string) => boolean) {
let actualText: string | undefined;

await retry.waitForWithTimeout('assertExpectedText', 1000, async () => {
await retry.waitForWithTimeout('assertExpectedText', 5000, async () => {
actualText = await find.byCssSelector(selector).then((el) => el.getVisibleText());
return test(actualText);
});
Expand Down

0 comments on commit 5dba807

Please sign in to comment.