skip failing suite (#212236)

This commit is contained in:
Alex Szabo 2025-04-11 15:53:21 +02:00
parent 15314f304c
commit 8d54f81f5a

View file

@ -28,7 +28,8 @@ jest.mock('react-router-dom', () => ({
jest.mock('../../onboarding_context');
describe('useExpandedCard Hook', () => {
// Failing: See https://github.com/elastic/kibana/issues/212236
describe.skip('useExpandedCard Hook', () => {
const mockCardId = 'card-1' as OnboardingCardId;
const mockScrollTo = jest.fn();
global.window.scrollTo = mockScrollTo;