skip flaky tests (#38791)

This commit is contained in:
spalger 2019-06-12 08:05:10 -07:00
parent 51d47cae39
commit c8d39feec8

View file

@ -140,7 +140,8 @@ async function retryUtil(millis: number, testFn: () => void, interval = 1000) {
}
}
test('launcher can start and end a process', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/38791
test.skip('launcher can start and end a process', async () => {
const launcher = new MockLauncher('mock', 'localhost', options);
const proxy = await launcher.launch(false, 1, '');
await retryUtil(1000, () => {