Skip to content

Commit

Permalink
skip flaky suite (#171289)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Jul 4, 2024
1 parent 21d1a33 commit bb80995
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ describe('Version Compatibility', () => {
await expect(startServers({ customKibanaVersion: previousMinor() })).resolves.toBeUndefined();
});

it('should flag the incompatibility on version mismatch (ES is previous minor)', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/171289
it.skip('should flag the incompatibility on version mismatch (ES is previous minor)', async () => {
const found$ = new Subject<void>();
consoleSpy.mockImplementation((str) => {
if (str.includes('is incompatible')) {
Expand Down

0 comments on commit bb80995

Please sign in to comment.