diff --git a/x-pack/test_utils/jest/integration_tests/example_integration.test.ts b/x-pack/test_utils/jest/integration_tests/example_integration.test.ts index dd8890299f6e..d1761bb64974 100644 --- a/x-pack/test_utils/jest/integration_tests/example_integration.test.ts +++ b/x-pack/test_utils/jest/integration_tests/example_integration.test.ts @@ -21,7 +21,8 @@ describe('example integration test with kbn server', async () => { await servers.stop(); }); - it('should have started new platform server correctly', () => { + // FLAKY: https://github.com/elastic/kibana/issues/32795#issuecomment-471585274 + it.skip('should have started new platform server correctly', () => { expect(servers.kbnServer).toBeDefined(); expect(servers.kbnServer.server).toBeDefined(); expect(servers.kbnServer.server.plugins).toBeDefined();