From 2230441dfec180dc9307eaba8e30f81fa4f0e1e3 Mon Sep 17 00:00:00 2001 From: Vitalii Dmyterko <92328789+vitaliidm@users.noreply.github.com> Date: Mon, 24 Jun 2024 09:35:12 +0100 Subject: [PATCH] [Security solution][Detection Engine] removes skipped "alerts index does not exist" FTR test --- .../ess_specific_index_logic/create_index.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/alerts/basic_license_essentials_tier/ess_specific_index_logic/create_index.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/alerts/basic_license_essentials_tier/ess_specific_index_logic/create_index.ts index a66daa964ce82..8ed33f1b763f1 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/alerts/basic_license_essentials_tier/ess_specific_index_logic/create_index.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/alerts/basic_license_essentials_tier/ess_specific_index_logic/create_index.ts @@ -38,12 +38,6 @@ export default ({ getService }: FtrProviderContext) => { await esArchiver.unload('x-pack/test/functional/es_archives/signals/index_alias_clash'); }); - // Skipped: see https://github.com/elastic/kibana/issues/179208 - it.skip('should report that alerts index does not exist', async () => { - const { body } = await supertest.get(DETECTION_ENGINE_INDEX_URL).send().expect(404); - expect(body).to.eql({ message: 'index for this space does not exist', status_code: 404 }); - }); - it('should return 200 for create_index', async () => { const { body } = await supertest .post(DETECTION_ENGINE_INDEX_URL)