From 643ead4250a2d47a66ad09978217600b7a6193ed Mon Sep 17 00:00:00 2001 From: Kevin Logan <56395104+kevinlog@users.noreply.github.com> Date: Wed, 16 Aug 2023 11:29:26 -0400 Subject: [PATCH] [Security Solution] Unskip tests after package fix (#163962) ## Summary Unskips tests that failed due to an unstable package merge. Unskipping the following: https://github.com/elastic/kibana/issues/163889 https://github.com/elastic/kibana/issues/163890 https://github.com/elastic/kibana/issues/163883 https://github.com/elastic/kibana/issues/159695 https://github.com/elastic/kibana/issues/159696 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --- .../security_solution_endpoint/apps/endpoint/endpoint_list.ts | 3 +-- .../apps/integrations/artifact_entries_list.ts | 4 +--- .../apps/integrations/policy_details.ts | 4 +--- .../test/security_solution_endpoint_api_int/apis/metadata.ts | 3 +-- 4 files changed, 4 insertions(+), 10 deletions(-) diff --git a/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts b/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts index d32b7ee11c2687..3c66c28d570c08 100644 --- a/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts +++ b/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts @@ -114,8 +114,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { await pageObjects.endpoint.navigateToEndpointList(); }); - // FLAKY: https://github.com/elastic/kibana/issues/163883 - describe.skip('when there is data,', () => { + describe('when there is data,', () => { before(async () => { indexedData = await endpointTestResources.loadEndpointData({ numHosts: 3 }); await pageObjects.endpoint.navigateToEndpointList(); diff --git a/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts b/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts index f986c71f1d66d5..f6584f9802e515 100644 --- a/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts +++ b/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts @@ -51,9 +51,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { .set('kbn-xsrf', 'true'); }; - // FLAKY: https://github.com/elastic/kibana/issues/159695 - // FLAKY: https://github.com/elastic/kibana/issues/159696 - describe.skip('For each artifact list under management', function () { + describe('For each artifact list under management', function () { this.timeout(60_000 * 5); let indexedData: IndexedHostsAndAlertsResponse; let policyInfo: PolicyTestResourceInfo; diff --git a/x-pack/test/security_solution_endpoint/apps/integrations/policy_details.ts b/x-pack/test/security_solution_endpoint/apps/integrations/policy_details.ts index 2814706109d602..0093119a21e189 100644 --- a/x-pack/test/security_solution_endpoint/apps/integrations/policy_details.ts +++ b/x-pack/test/security_solution_endpoint/apps/integrations/policy_details.ts @@ -27,9 +27,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { const endpointTestResources = getService('endpointTestResources'); const retry = getService('retry'); - // FLAKY: https://github.com/elastic/kibana/issues/163889 - // FLAKY: https://github.com/elastic/kibana/issues/163890 - describe.skip('When on the Endpoint Policy Details Page', function () { + describe('When on the Endpoint Policy Details Page', function () { let indexedData: IndexedHostsAndAlertsResponse; const formTestSubjects = getPolicySettingsFormTestSubjects(); diff --git a/x-pack/test/security_solution_endpoint_api_int/apis/metadata.ts b/x-pack/test/security_solution_endpoint_api_int/apis/metadata.ts index 3b6f9d5c278f2c..4eb92d2dee08be 100644 --- a/x-pack/test/security_solution_endpoint_api_int/apis/metadata.ts +++ b/x-pack/test/security_solution_endpoint_api_int/apis/metadata.ts @@ -394,8 +394,7 @@ export default function ({ getService }: FtrProviderContext) { }); }); - // FLAKY: https://github.com/elastic/kibana/issues/160274 - describe.skip('get metadata transforms', () => { + describe('get metadata transforms', () => { const testRegex = /endpoint\.metadata_(united|current)-default-*/; it('should respond forbidden if no fleet access', async () => {