um-react/src/__test__/hello.test.tsx

7 lines
176 B
TypeScript

import { render, screen } from '@testing-library/react';
test('hello', () => {
render(<div>hello</div>);
expect(screen.getByText('hello') as any).toBeInTheDocument();
});