Skip to content

Commit

Permalink
disable flaky test (#38849)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Jun 12, 2019
1 parent 9e472e6 commit f2dd96b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x-pack/plugins/code/server/lsp/abstract_launcher.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ test('launcher can reconnect if process died', async () => {
await delay(1000);
});

test('passive launcher can start and end a process', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/38849
test.skip('passive launcher can start and end a process', async () => {
const launcher = new PassiveMockLauncher('mock', 'localhost', options);
const proxy = await launcher.launch(false, 1, '');
await retryUtil(30000, () => {
Expand Down

0 comments on commit f2dd96b

Please sign in to comment.