From 910a5cae5f4dee6919a6f3c8a4294187ab64024d Mon Sep 17 00:00:00 2001 From: Tyler Smalley Date: Tue, 26 Oct 2021 22:30:55 -0700 Subject: [PATCH] skip flaky suite (#104260) --- x-pack/test/api_integration/apis/security_solution/hosts.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/api_integration/apis/security_solution/hosts.ts b/x-pack/test/api_integration/apis/security_solution/hosts.ts index 12b9ce138d175..4df46002e9a13 100644 --- a/x-pack/test/api_integration/apis/security_solution/hosts.ts +++ b/x-pack/test/api_integration/apis/security_solution/hosts.ts @@ -27,7 +27,8 @@ export default function ({ getService }: FtrProviderContext) { const esArchiver = getService('esArchiver'); const supertest = getService('supertest'); - describe('hosts', () => { + // Failing: See https://github.com/elastic/kibana/issues/104260 + describe.skip('hosts', () => { before(() => esArchiver.load('x-pack/test/functional/es_archives/auditbeat/hosts')); after(() => esArchiver.unload('x-pack/test/functional/es_archives/auditbeat/hosts'));