The more your tests resemble the way your software is used, the more confidence they can give you.
import { render } from '@testing-library/react'
test('should show h1 title', () => {
// given
const comp = render(<App />)
// when
const result = comp.getByTestId('title').textContent
// then
expect(result).toBe('练功房前端脚手架')
})