This commit is contained in:
Alejandro Fernández Haro 2024-08-08 20:51:10 +02:00 committed by GitHub
parent 4a7aa9c94f
commit bfb1bf52c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -91,8 +91,7 @@ describe('Version Compatibility', () => {
await expect(startServers({ customKibanaVersion: previousMinor() })).resolves.toBeUndefined();
});
// FLAKY: https://github.com/elastic/kibana/issues/171289
it.skip('should flag the incompatibility on version mismatch (ES is previous minor)', async () => {
it('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')) {