From dfe8c31f3c3a5fbd906808cb822a7b32cfbea0c9 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Mon, 29 Jan 2024 22:06:09 +0000 Subject: [PATCH] skip flaky suite (#164224) --- .../functional/apps/ml/data_frame_analytics/custom_urls.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/ml/data_frame_analytics/custom_urls.ts b/x-pack/test/functional/apps/ml/data_frame_analytics/custom_urls.ts index dac2d1ae1fa36..17f07c0d26297 100644 --- a/x-pack/test/functional/apps/ml/data_frame_analytics/custom_urls.ts +++ b/x-pack/test/functional/apps/ml/data_frame_analytics/custom_urls.ts @@ -38,7 +38,8 @@ export default function ({ getService }: FtrProviderContext) { const ml = getService('ml'); const browser = getService('browser'); - describe('custom urls', function () { + // FLAKY: https://github.com/elastic/kibana/issues/164224 + describe.skip('custom urls', function () { const dfaJobId = `fq_regression_${Date.now()}`; const generateDestinationIndex = (analyticsId: string) => `user-${analyticsId}`; let testDashboardId: string | null = null;