skip flaky suite (#148515)

This commit is contained in:
Tiago Costa 2023-01-09 11:48:09 +00:00
parent 631a12ba3c
commit bf3b9f0698
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -9,7 +9,8 @@
export default function ({ getService }) {
const supertest = getService('supertest');
describe('kibana server with ssl', () => {
// FLAKY: https://github.com/elastic/kibana/issues/148515
describe.skip('kibana server with ssl', () => {
it('handles requests using ssl with a P12 keystore that uses an intermediate CA', async () => {
await supertest.get('/').expect(302);
});