[Index Management] Remove unused test (#149516)

This commit is contained in:
Ignacio Rivas 2023-01-25 19:55:58 +01:00 committed by GitHub
parent 2bd137bef0
commit 9a86f923d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,15 +33,10 @@ export default function ({ getService }) {
clearCache,
} = registerHelpers({ supertest });
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/145022
describe.skip('indices', () => {
describe('indices', () => {
after(() => Promise.all([cleanUpEsResources()]));
describe('clear cache', () => {
it('should clear the cache on all indices', async () => {
await clearCache('*').expect(200);
});
it('should clear the cache on a single index', async () => {
const index = await createIndex();
await clearCache(index).expect(200);