import React from 'react' import { render, screen } from '@testing-library/react' import { TextLink } from './TextLink' describe('Link', () => { it('exists', async () => { render(Testing) await screen.findByText('Testing') }) })