skip flaky suite (#139634)

This commit is contained in:
Tiago Costa 2022-08-29 17:53:57 +01:00
parent 7919682c07
commit 936b31dc33
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -59,7 +59,8 @@ describe('TaskRunnerTimer', () => {
});
});
describe('runWithTimer', () => {
// FLAKY: https://github.com/elastic/kibana/issues/139634
describe.skip('runWithTimer', () => {
test('should calculate time it takes to run callback function for a given timer span', async () => {
const result = await timer.runWithTimer(TaskRunnerTimerSpan.ProcessAlerts, async () => {
await new Promise((resolve) => setTimeout(resolve, 2000));