[Search] Skip only the failing test from #164996 instead of the whole suite (#165240)

## Summary

This PR moves the `.skip` call to only the failing test from #164996
instead of the whole suite, since the rest of the suite runs fine.

Related to #164996.
This commit is contained in:
Davis McPhee 2023-08-30 17:43:44 -03:00 committed by GitHub
parent 2eee40e4f0
commit 00554f684e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,8 +38,7 @@ export default function ({ getService }: FtrProviderContext) {
}
}
// Failing: See https://github.com/elastic/kibana/issues/164996
describe.skip('search', () => {
describe('search', () => {
before(async () => {
// ensure es not empty
await es.index({
@ -456,7 +455,8 @@ export default function ({ getService }: FtrProviderContext) {
.expect(404);
});
it('should delete a completed search', async function () {
// Failing: See https://github.com/elastic/kibana/issues/164996
it.skip('should delete a completed search', async function () {
await markRequiresShardDelayAgg(this);
const resp = await supertest