temporarily skip flaky test (#32922)

This commit is contained in:
Spencer 2019-03-11 13:25:01 -07:00 committed by GitHub
parent d324072acc
commit f71c091911
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();