[7.0] temporarily skip flaky test (#32922) (#32930)

Backports the following commits to 7.0:
 - temporarily skip flaky test  (#32922)
This commit is contained in:
Spencer 2019-03-11 13:30:33 -07:00 committed by GitHub
parent 5940203c8b
commit 46a35c334f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();