[Tests] skip failing response-too-large test (#180254)

## Summary
cc: @elastic/kibana-core 

skip response-too-large test
(https://github.com/elastic/kibana/issues/167288)
This commit is contained in:
Alex Szabo 2024-04-08 10:31:29 +02:00 committed by GitHub
parent ab1acf209b
commit a3144b1907
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1348,7 +1348,9 @@ export const runActionTestSuite = ({
);
});
it('returns a left es_response_too_large error when a read batch exceeds the maxResponseSize', async () => {
// consistently breaking in CI:
// https://github.com/elastic/kibana/issues/167288
it.skip('returns a left es_response_too_large error when a read batch exceeds the maxResponseSize', async () => {
const openPitTask = openPit({ client, index: 'existing_index_with_docs' });
const pitResponse = (await openPitTask()) as Either.Right<OpenPitResponse>;