Skip to content

Commit

Permalink
possible to only have two errors
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierM committed Nov 1, 2023
1 parent f21e31a commit 4cdfcc9
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 4cdfcc9

Please sign in to comment.