mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
## 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:
parent
2eee40e4f0
commit
00554f684e
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue