From 507ae79ffe040af9d4f05d01830e1f42e0b34d65 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Tue, 15 Dec 2020 10:36:35 -0600 Subject: [PATCH] skip "without kibana index" suite. #85911 --- test/api_integration/apis/saved_objects/find.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/api_integration/apis/saved_objects/find.js b/test/api_integration/apis/saved_objects/find.js index c6f1ec1ea732d..59a10379a9423 100644 --- a/test/api_integration/apis/saved_objects/find.js +++ b/test/api_integration/apis/saved_objects/find.js @@ -420,7 +420,7 @@ export default function ({ getService }) { })); }); - describe('without kibana index', () => { + describe.skip('without kibana index', () => { before( async () => // just in case the kibana server has recreated it @@ -430,7 +430,7 @@ export default function ({ getService }) { }) ); - it.skip('should return 200 with empty response', async () => + it('should return 200 with empty response', async () => await supertest .get('/api/saved_objects/_find?type=visualization') .expect(200)