import { render } from '@testing-library/react-native'; import * as React from 'react'; import { ExpandablePressable } from './ExpandablePressable'; beforeEach(() => { jest.clearAllMocks(); jest.spyOn(console, 'info').mockImplementation(); }); describe('ExpandablePressable', () => { it('renders a pressable component using the useExpandable hook', () => { const { toJSON } = render( , ); expect(toJSON()).toMatchInlineSnapshot(` `); }); });