import React from 'react';
import { render } from '@testing-library/react-native';
import Text from '../Text';
import noop from '../../helpers/noop';
describe('Text', () => {
it.each`
element
${(
Test
)}
${(
Test
)}
${(
Test
)}
${(
Test
)}
${(
Test
)}
`('renders correctly', ({ element }) => {
const { toJSON } = render(element);
expect(toJSON()).toMatchSnapshot();
});
});