From 6a7fb48b8838cb88bb60bbcb2f43a181b6f679f7 Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Tue, 5 Mar 2024 01:30:51 +0000 Subject: [PATCH] skip flaky suite (#177806) --- x-pack/test/api_integration/apis/slos/get_slo.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/api_integration/apis/slos/get_slo.ts b/x-pack/test/api_integration/apis/slos/get_slo.ts index e61bab90e4cac..4fa2eec47acd6 100644 --- a/x-pack/test/api_integration/apis/slos/get_slo.ts +++ b/x-pack/test/api_integration/apis/slos/get_slo.ts @@ -14,7 +14,8 @@ import { SloEsClient } from './helper/es'; import { sloData } from './fixtures/create_slo'; export default function ({ getService }: FtrProviderContext) { - describe('Get SLOs', function () { + // FLAKY: https://github.com/elastic/kibana/issues/177806 + describe.skip('Get SLOs', function () { this.tags('skipCloud'); const supertestAPI = getService('supertest');