Skip to content

Commit

Permalink
disable flaky suite (#45983) (#45884)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Sep 18, 2019
1 parent dc0851e commit b0188e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions x-pack/test/api_integration/apis/telemetry/telemetry_local.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -97,8 +99,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'
Expand Down

0 comments on commit b0188e0

Please sign in to comment.