Skip to content

Commit

Permalink
[ML] Extend time to wait for updated message.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Sep 1, 2020
1 parent 6d87905 commit 87647ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export function TransformTableProvider({ getService }: FtrProviderContext) {
await testSubjects.existOrFail('transformMessagesTab');
await testSubjects.click('transformMessagesTab');
await testSubjects.existOrFail('~transformMessagesTabContent');
await retry.tryForTime(5000, async () => {
await retry.tryForTime(30 * 1000, async () => {
const actualText = await testSubjects.getVisibleText('~transformMessagesTabContent');
expect(actualText.includes(expectedText)).to.eql(
true,
Expand Down

0 comments on commit 87647ba

Please sign in to comment.