skip flaky suite (#119272)

This commit is contained in:
Tiago Costa 2021-11-26 15:38:50 +00:00
parent 64599464ce
commit 7a2b07cde5
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -250,7 +250,8 @@ export default function ({ getService }: FtrProviderContext) {
});
});
describe('delete', () => {
// FLAKY: https://github.com/elastic/kibana/issues/119272
describe.skip('delete', () => {
it('should return 404 when no search id provided', async () => {
await supertest.delete(`/internal/search/ese`).set('kbn-xsrf', 'foo').send().expect(404);
});