Skip to content

Commit

Permalink
Merge branch 'fix/198754' of https://github.com/dej611/kibana into fi…
Browse files Browse the repository at this point in the history
…x/198754
  • Loading branch information
dej611 committed Dec 19, 2024
2 parents affa1f9 + 4289e4c commit 55c3a33
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions x-pack/test/functional/apps/discover/visualize_field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,10 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
expect(await testSubjects.exists('xyVisChart')).to.be(true);

await discover.chooseLensSuggestion('pie');
await header.waitUntilLoadingHasFinished();
expect(await testSubjects.exists('partitionVisChart')).to.be(true);
retry.waitFor('partition chart suggestion to appear', async () => {
await header.waitUntilLoadingHasFinished();
return testSubjects.exists('partitionVisChart');
});
});

it('should allow changing dimensions', async () => {
Expand Down

0 comments on commit 55c3a33

Please sign in to comment.