Skip to content

Commit

Permalink
[eem] fix flaky _count test (elastic#204399)
Browse files Browse the repository at this point in the history
  • Loading branch information
klacabane authored Dec 16, 2024
1 parent 6c69401 commit c9e26a4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions x-pack/test/api_integration/apis/entity_manager/count.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ export default function ({ getService }: FtrProviderContext) {
const esClient = getService('es');
const supertest = getService('supertest');

// Failing: See https://github.com/elastic/kibana/issues/204323
describe.skip('_count API', () => {
describe('_count API', () => {
let cleanup: Function[] = [];

before(() => clearEntityDefinitions(esClient));
Expand Down Expand Up @@ -453,10 +452,10 @@ export default function ({ getService }: FtrProviderContext) {
types: {
chumble: 0,
},
errors: [
errors: expect.arrayContaining([
'No index found for source [source: source1-with-chumbles, type: chumble] with index patterns [index-1-with-chumbles]',
'No index found for source [source: source2-with-chumbles, type: chumble] with index patterns [index-2-with-chumbles]',
],
]),
});
});
});
Expand Down

0 comments on commit c9e26a4

Please sign in to comment.