import { render, screen } from '@testing-library/react'; import App from './App'; test('shows ui', () => { render(<App />); const linkElement = screen.getByText(/initial remaining/i); expect(linkElement).toBeInTheDocument(); });