import { render, testA11y } from '@fuels/jest';
import { Text } from './Text';
describe('Text', () => {
it('a11y', async () => {
await testA11y(Text);
});
it('should render a basic paragraph', () => {
const { container } = render(Click);
expect(container.querySelector('p')).toBeInTheDocument();
});
});