From cfc3826e737e1b6b4df5c51476a535b416801734 Mon Sep 17 00:00:00 2001 From: Paulo Silva Date: Fri, 11 Oct 2024 19:42:56 -0700 Subject: [PATCH] [Cloud Security] Skipping flaky test (#195993) ## Summary It fixes #195839 Skipping flaky test, opening a follow-up ticket to re-enabled test: https://github.com/elastic/kibana/issues/194046 (cherry picked from commit 2be7a203e14931ae17c9b00349f608ec72e6b835) --- .../routes/vulnerabilities_dashboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/test/cloud_security_posture_api/routes/vulnerabilities_dashboard.ts b/x-pack/test/cloud_security_posture_api/routes/vulnerabilities_dashboard.ts index 30bae105df8e9..1f92647699cec 100644 --- a/x-pack/test/cloud_security_posture_api/routes/vulnerabilities_dashboard.ts +++ b/x-pack/test/cloud_security_posture_api/routes/vulnerabilities_dashboard.ts @@ -119,7 +119,7 @@ export default function (providerContext: FtrProviderContext) { const vulnerabilitiesIndex = new EsIndexDataProvider(es, VULNERABILITIES_LATEST_INDEX); const scoresIndex = new EsIndexDataProvider(es, BENCHMARK_SCORES_INDEX); - describe('Vulnerability Dashboard API', async () => { + describe.skip('Vulnerability Dashboard API', async () => { beforeEach(async () => { await vulnerabilitiesIndex.deleteAll(); await scoresIndex.deleteAll();