Skip to content

Commit

Permalink
[Metrics UI] Stabilize group header functional test (#122169) (#122279)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <[email protected]>

Co-authored-by: Felix Stürmer <[email protected]>
  • Loading branch information
kibanamachine and weltenwort authored Jan 4, 2022
1 parent 3906188 commit 2dc83cd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions x-pack/test/functional/apps/infra/home_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
it('group nodes by custom field', async () => {
await pageObjects.infraHome.goToTime(DATE_WITH_DATA);
await pageObjects.infraHome.getWaffleMap();
const groups = await pageObjects.infraHome.groupByCustomField('host.os.platform');
expect(groups).to.eql(['ubuntu']);
await retry.try(async () => {
const groups = await pageObjects.infraHome.groupByCustomField('host.os.platform');
expect(groups).to.eql(['ubuntu']);
});
});

it('filter nodes by search term', async () => {
Expand Down

0 comments on commit 2dc83cd

Please sign in to comment.