Julia Rechkunova 2023-04-06 11:21:24 +02:00 committed by GitHub
parent ec7110dfca
commit bb8bb361b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -302,9 +302,12 @@ export class FilterBarService extends FtrService {
await this.createFilter(filter);
await this.testSubjects.scrollIntoView('saveFilter');
await this.testSubjects.clickWhenNotDisabled('saveFilter');
});
await this.testSubjects.waitForDeleted('saveFilter');
await this.retry.try(async () => {
await this.testSubjects.waitForDeleted('saveFilter');
});
await this.header.awaitGlobalLoadingIndicatorHidden();
}

View file

@ -307,10 +307,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
expect(await titleElem.getAttribute('value')).to.equal(dataView);
};
// FLAKY: https://github.com/elastic/kibana/issues/152477
// FLAKY: https://github.com/elastic/kibana/issues/152478
// FLAKY: https://github.com/elastic/kibana/issues/152479
describe.skip('Search source Alert', () => {
describe('Search source Alert', () => {
before(async () => {
await security.testUser.setRoles(['discover_alert']);