From cae1a82140e0633c1041a877c9bee6a5767e3981 Mon Sep 17 00:00:00 2001 From: Kim Joar Bekkelund Date: Mon, 15 Jan 2018 14:35:11 +0100 Subject: [PATCH] Skip flaky CLI manager test (#16045) --- src/cli/cluster/__tests__/worker.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli/cluster/__tests__/worker.js b/src/cli/cluster/__tests__/worker.js index 8151aed2fee6..13d2d1c2a572 100644 --- a/src/cli/cluster/__tests__/worker.js +++ b/src/cli/cluster/__tests__/worker.js @@ -170,7 +170,8 @@ describe('CLI cluster manager', function () { sinon.assert.calledWith(worker.on, 'fork:online'); }); - it('listens for cluster and process "exit" events', async function () { + // TODO This test is flaky, see https://github.com/elastic/kibana/issues/15888 + it.skip('listens for cluster and process "exit" events', async function () { const worker = setup({ log: new Log(false, true) }); sinon.spy(process, 'on');