import { render } from '@testing-library/react' import { Button } from '../Button' describe('', () => { it('should render', async () => { const { getByText } = render(Submit) expect(getByText('Submit')).toBeInTheDocument() }) })