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