From 34ae06a96e01c32e4b2b83d257d7266114b9071a Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Tue, 18 Jan 2022 02:55:02 +0000 Subject: [PATCH 1/2] skip flaky suite (#110938) --- x-pack/test/licensing_plugin/server/updates.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/licensing_plugin/server/updates.ts b/x-pack/test/licensing_plugin/server/updates.ts index 87132dd28ddfb..55b2b68ff8f82 100644 --- a/x-pack/test/licensing_plugin/server/updates.ts +++ b/x-pack/test/licensing_plugin/server/updates.ts @@ -17,7 +17,8 @@ export default function (ftrContext: FtrProviderContext) { const scenario = createScenario(ftrContext); - describe('changes in license types', () => { + // FLAKY: https://github.com/elastic/kibana/issues/110938 + describe.skip('changes in license types', () => { after(async () => { await scenario.teardown(); }); From d296c6f0de69d95f21c570171dd65e1b7a87e0f7 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Tue, 18 Jan 2022 02:59:24 +0000 Subject: [PATCH 2/2] skip flaky suite (#118728) --- x-pack/test/functional/apps/security/users.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/security/users.ts b/x-pack/test/functional/apps/security/users.ts index b2bef848b18e2..634c7ace52735 100644 --- a/x-pack/test/functional/apps/security/users.ts +++ b/x-pack/test/functional/apps/security/users.ts @@ -201,7 +201,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); }); - describe('Deactivate/Activate user', () => { + // FLAKY: https://github.com/elastic/kibana/issues/118728 + describe.skip('Deactivate/Activate user', () => { it('deactivates user when confirming', async () => { await PageObjects.security.deactivatesUser(optionalUser); const users = keyBy(await PageObjects.security.getElasticsearchUsers(), 'username');