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