Skip to content

Commit

Permalink
[RAM] Fix flaky test get_global_execution_kpi (elastic#170328)
Browse files Browse the repository at this point in the history
## Summary

Fix -> elastic#153112

I think it is possible to only have two errors, one for each rule.
  • Loading branch information
XavierM authored Nov 1, 2023
1 parent d7dc334 commit ea80be5
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ export default function getGlobalExecutionKpiTests({ getService }: FtrProviderCo

const retry = getService('retry');

// FLAKY: https://github.com/elastic/kibana/issues/153112
describe.skip('getGlobalExecutionKpi', () => {
describe('getGlobalExecutionKpi', () => {
const objectRemover = new ObjectRemover(supertest);

afterEach(() => objectRemover.removeAll());
Expand Down Expand Up @@ -298,7 +297,7 @@ export default function getGlobalExecutionKpiTests({ getService }: FtrProviderCo
'triggeredActions',
]);
expect(kpiLogs.success).to.be.above(1);
expect(kpiLogs.failure).to.be.above(2);
expect(kpiLogs.failure).to.be.above(1);
});
});
}

0 comments on commit ea80be5

Please sign in to comment.