From db3c3d5e4918f2fe4d824cece9aa9a3a1abcb2bd Mon Sep 17 00:00:00 2001 From: Yara Tercero Date: Thu, 11 Jan 2024 18:41:45 -0800 Subject: [PATCH] skipping broken tests that had tried to initially unskip for serverless --- .../default_license/rule_creation/create_rules_bulk.ts | 2 +- .../default_license/rule_delete/delete_rules_bulk.ts | 2 +- .../default_license/rule_patch/patch_rules_bulk.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_creation/create_rules_bulk.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_creation/create_rules_bulk.ts index 81d136bac6a7a..b3d954773b518 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_creation/create_rules_bulk.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_creation/create_rules_bulk.ts @@ -43,7 +43,7 @@ export default ({ getService }: FtrProviderContext): void => { const es = getService('es'); // See https://github.com/elastic/kibana/issues/130963 for discussion on deprecation - describe('@ess @serverless create_rules_bulk', () => { + describe('@ess @brokenInServerless @skipInQA create_rules_bulk', () => { describe('deprecations', () => { afterEach(async () => { await deleteAllRules(supertest, log); diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_delete/delete_rules_bulk.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_delete/delete_rules_bulk.ts index 092f50022a047..a4f4df7868005 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_delete/delete_rules_bulk.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_delete/delete_rules_bulk.ts @@ -37,7 +37,7 @@ export default ({ getService }: FtrProviderContext): void => { const ELASTICSEARCH_USERNAME = config.get('servers.kibana.username'); // See https://github.com/elastic/kibana/issues/130963 for discussion on deprecation - describe('@ess @serverless delete_rules_bulk', () => { + describe('@ess @brokenInServerless @skipInQA delete_rules_bulk', () => { describe('deprecations', () => { it('should return a warning header', async () => { await createRule(supertest, log, getSimpleRule()); diff --git a/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_patch/patch_rules_bulk.ts b/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_patch/patch_rules_bulk.ts index edf7d1142120e..94c07f20d7d60 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_patch/patch_rules_bulk.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_patch/patch_rules_bulk.ts @@ -42,7 +42,7 @@ export default ({ getService }: FtrProviderContext) => { const ELASTICSEARCH_USERNAME = config.get('servers.kibana.username'); // See https://github.com/elastic/kibana/issues/130963 for discussion on deprecation - describe('@ess @serverless patch_rules_bulk', () => { + describe('@ess @brokenInServerless @skipInQA patch_rules_bulk', () => { describe('deprecations', () => { afterEach(async () => { await deleteAllRules(supertest, log);