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