import React from 'react'; import {render} from '@testing-library/react-native'; import {AccountInformation} from './AccountInformation'; describe('AccountInformation Component', () => { const defaultProps = { email: 'test@example.com', picture: 'https://example.com/avatar.jpg', }; it('should match snapshot with email and picture', () => { const {toJSON} = render(); expect(toJSON()).toMatchSnapshot(); }); it('should match snapshot with different email', () => { const {toJSON} = render( , ); expect(toJSON()).toMatchSnapshot(); }); it('should match snapshot with different picture URL', () => { const {toJSON} = render( , ); expect(toJSON()).toMatchSnapshot(); }); it('should match snapshot with long email', () => { const {toJSON} = render( , ); expect(toJSON()).toMatchSnapshot(); }); });