Skip to content

Commit

Permalink
[Discover] Unskip field popover flaky tests (#165641)
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta authored Sep 7, 2023
1 parent a0404d6 commit 2b78d6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions test/examples/unified_field_list_examples/field_stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
await PageObjects.unifiedFieldList.cleanSidebarLocalStorage();
});

// FLAKY: https://github.com/elastic/kibana/issues/165608
describe.skip('field distribution', () => {
describe('field distribution', () => {
before(async () => {
await PageObjects.unifiedFieldList.toggleSidebarSection('empty'); // it will allow to render more fields in Available fields section
});
Expand Down
1 change: 1 addition & 0 deletions test/functional/page_objects/unified_field_list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export class UnifiedFieldListPageObject extends FtrService {
}

public async clickFieldListItem(field: string) {
await this.testSubjects.moveMouseTo(`field-${field}`);
await this.testSubjects.click(`field-${field}`);

await this.waitUntilFieldPopoverIsOpen();
Expand Down

0 comments on commit 2b78d6f

Please sign in to comment.