skip flaky suite (#160994)

This commit is contained in:
Tiago Costa 2023-07-05 18:54:27 +01:00
parent 112a0f9abf
commit c9dc2bf308
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -1117,7 +1117,8 @@ describe('migration actions', () => {
});
});
describe('readWithPit', () => {
// FLAKY: https://github.com/elastic/kibana/issues/160994
describe.skip('readWithPit', () => {
it('requests documents from an index using given PIT', async () => {
const openPitTask = openPit({ client, index: 'existing_index_with_docs' });
const pitResponse = (await openPitTask()) as Either.Right<OpenPitResponse>;