skip flaky suite (#213905)

This commit is contained in:
Tiago Costa 2025-03-11 17:21:50 +00:00
parent 697d604870
commit 66f2bd9856
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA

View file

@ -117,7 +117,8 @@ describe('notesSlice', () => {
expect(notesReducer(initalEmptyState, { type: 'unknown' })).toEqual(initalEmptyState);
});
describe('fetchNotesByDocumentIds', () => {
// FLAKY: https://github.com/elastic/kibana/issues/213905
describe.skip('fetchNotesByDocumentIds', () => {
it('should set correct status state when fetching notes by document ids', () => {
const action = { type: fetchNotesByDocumentIds.pending.type };