import React from 'react'; import {render} from '@testing-library/react-native'; import PendingIcon from './PendingIcon'; describe('PendingIcon', () => { it('should render PendingIcon component', () => { const {toJSON} = render(); expect(toJSON()).toBeTruthy(); }); it('should match snapshot', () => { const {toJSON} = render(); expect(toJSON()).toMatchSnapshot(); }); it('should render with custom color', () => { const {toJSON} = render(); expect(toJSON()).toMatchSnapshot(); }); });