Skip to content

Commit

Permalink
Fix flaky /api/status FTR test (#121486) (#121502)
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Gayvallet <[email protected]>
  • Loading branch information
kibanamachine and pgayvallet authored Dec 17, 2021
1 parent 03b8b96 commit 5308e94
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/api_integration/apis/status/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ import expect from '@kbn/expect';
export default function ({ getService }) {
const supertest = getService('supertest');

// Failing: See https://github.com/elastic/kibana/issues/116060
describe.skip('kibana status api', () => {
describe('kibana status api', () => {
it('returns version, status and metrics fields', () => {
return supertest
.get('/api/status')
Expand All @@ -26,7 +25,7 @@ export default function ({ getService }) {
expect(body.version.build_number).to.be.a('number');

expect(body.status.overall).to.be.an('object');
expect(body.status.overall.level).to.be('available');
expect(body.status.overall.level).to.be.a('string');

expect(body.status.core).to.be.an('object');
expect(body.status.plugins).to.be.an('object');
Expand Down

0 comments on commit 5308e94

Please sign in to comment.