[Discover] Unskip field popover flaky tests (#165641)

- Closes https://github.com/elastic/kibana/issues/165608

150x
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3061
This commit is contained in:
Julia Rechkunova 2023-09-07 09:02:12 +02:00 committed by GitHub
parent a0404d67fb
commit 2b78d6fbad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -52,8 +52,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
await PageObjects.unifiedFieldList.cleanSidebarLocalStorage(); await PageObjects.unifiedFieldList.cleanSidebarLocalStorage();
}); });
// FLAKY: https://github.com/elastic/kibana/issues/165608 describe('field distribution', () => {
describe.skip('field distribution', () => {
before(async () => { before(async () => {
await PageObjects.unifiedFieldList.toggleSidebarSection('empty'); // it will allow to render more fields in Available fields section await PageObjects.unifiedFieldList.toggleSidebarSection('empty'); // it will allow to render more fields in Available fields section
}); });

View file

@ -95,6 +95,7 @@ export class UnifiedFieldListPageObject extends FtrService {
} }
public async clickFieldListItem(field: string) { public async clickFieldListItem(field: string) {
await this.testSubjects.moveMouseTo(`field-${field}`);
await this.testSubjects.click(`field-${field}`); await this.testSubjects.click(`field-${field}`);
await this.waitUntilFieldPopoverIsOpen(); await this.waitUntilFieldPopoverIsOpen();