Skip to content

Commit

Permalink
Removed delete confirmation timeout to avoid flaky failing because de…
Browse files Browse the repository at this point in the history
…letion to be a little slower on CI
  • Loading branch information
YulNaumenko committed Sep 18, 2020
1 parent aba1494 commit c442762
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
return createdAlert;
}

// FLAKY: https://github.com/elastic/kibana/issues/77401
describe.skip('alerts', function () {
describe('alerts', function () {
before(async () => {
await pageObjects.common.navigateToApp('triggersActions');
await testSubjects.click('alertsTab');
Expand Down Expand Up @@ -385,7 +384,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await testSubjects.click('deleteAll');
await testSubjects.existOrFail('deleteIdsConfirmation');
await testSubjects.click('deleteIdsConfirmation > confirmModalConfirmButton');
await testSubjects.missingOrFail('deleteIdsConfirmation', { timeout: 5000 });
await testSubjects.missingOrFail('deleteIdsConfirmation');

await pageObjects.common.closeToast();

Expand Down

0 comments on commit c442762

Please sign in to comment.