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