From 6f598d52bbf616e82080e10d2825e293ed031c56 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Wed, 1 May 2024 17:35:03 -0500 Subject: [PATCH] fix skip failing test suite (#182263, #182284) --- .../security_and_spaces/group1/tests/alerting/find.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find.ts b/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find.ts index f1ba921ce9c8f..9816059995142 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find.ts @@ -19,8 +19,6 @@ const findTestUtils = ( supertest: SuperTest, supertestWithoutAuth: any ) => { - // Failing: See https://github.com/elastic/kibana/issues/182263 - // Failing: See https://github.com/elastic/kibana/issues/182284 describe.skip(describeType, () => { afterEach(() => objectRemover.removeAll()); @@ -653,7 +651,9 @@ export default function createFindTests({ getService }: FtrProviderContext) { const supertest = getService('supertest'); const supertestWithoutAuth = getService('supertestWithoutAuth'); - describe('find', () => { + // Failing: See https://github.com/elastic/kibana/issues/182263 + // Failing: See https://github.com/elastic/kibana/issues/182284 + describe.skip('find', () => { const objectRemover = new ObjectRemover(supertest); afterEach(() => objectRemover.removeAll());