import React from 'react'; import {render} from '@testing-library/react-native'; import VerifiedIcon from './VerifiedIcon'; describe('VerifiedIcon', () => { it('should render VerifiedIcon component', () => { const {toJSON} = render(); expect(toJSON()).toBeTruthy(); }); it('should match snapshot', () => { const {toJSON} = render(); expect(toJSON()).toMatchSnapshot(); }); it('should have proper styling structure', () => { const {toJSON} = render(); const tree = toJSON(); // Verify component structure exists expect(tree).toBeTruthy(); expect(tree.children).toBeTruthy(); }); it('should render with check-circle icon', () => { const {toJSON} = render(); const tree = toJSON(); expect(tree).toBeTruthy(); }); });