From e1d5f65d7891130faeeaa4d2a42f359afd145d3b Mon Sep 17 00:00:00 2001 From: spalger Date: Wed, 18 Sep 2019 03:29:18 -0700 Subject: [PATCH] disable flaky suite (#45983) (#45884) (cherry picked from commit b0188e02d10dc315b3f2fb10a12f6f607ad44fbf) --- .../test/api_integration/apis/telemetry/telemetry_local.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/x-pack/test/api_integration/apis/telemetry/telemetry_local.js b/x-pack/test/api_integration/apis/telemetry/telemetry_local.js index cd53f0aa35021..c122c92ad0c79 100644 --- a/x-pack/test/api_integration/apis/telemetry/telemetry_local.js +++ b/x-pack/test/api_integration/apis/telemetry/telemetry_local.js @@ -39,7 +39,9 @@ export default function ({ getService }) { const supertest = getService('supertest'); const esSupertest = getService('esSupertest'); - describe('/api/telemetry/v2/clusters/_stats with monitoring disabled', () => { + // FLAKY: https://github.com/elastic/kibana/issues/45983 + // FLAKY: https://github.com/elastic/kibana/issues/45884 + describe.skip('/api/telemetry/v2/clusters/_stats with monitoring disabled', () => { before('', async () => { await esSupertest.put('/_cluster/settings').send(disableCollection).expect(200); await new Promise(r => setTimeout(r, 1000)); @@ -94,8 +96,7 @@ export default function ({ getService }) { expect(stats.stack_stats.xpack.rollup).to.be.an('object'); }); - // FLAKY: https://github.com/elastic/kibana/issues/45884 - it.skip('should pull local stats and validate fields', async () => { + it('should pull local stats and validate fields', async () => { const timeRange = { min: '2018-07-23T22:07:00Z', max: '2018-07-23T22:13:00Z'