import React from 'react'; import { render } from '@testing-library/react-native'; import Avatar from '../Avatar'; describe('Avatar', () => { it.each` size ${'small'} ${'medium'} ${'large'} `('render correctly', ({ size }) => { const { toJSON } = render(); expect(toJSON()).toMatchSnapshot(); }); });