From 3c3fc12ac317d1008fa3923ac970fc8c8b75292a Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Mon, 18 Mar 2024 15:51:10 +0000 Subject: [PATCH] skip flaky suite (#178322) --- .../apps/triggers_actions_ui/global_alerts_page.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/global_alerts_page.ts b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/global_alerts_page.ts index 6fdc56761c5ea9..94ff0dce16bb93 100644 --- a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/global_alerts_page.ts +++ b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/global_alerts_page.ts @@ -30,7 +30,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { const objectRemover = new ObjectRemover(supertest); describe('Global alerts page', function () { - describe('Loads the page with limited privileges', () => { + // FLAKY: https://github.com/elastic/kibana/issues/178322 + describe.skip('Loads the page with limited privileges', () => { before(async () => { await security.testUser.setRoles(['alerts_and_actions_role']); });