8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
import { render } from "@testing-library/react"
|
|
import App from "./App"
|
|
|
|
test("renders content", () => {
|
|
const { getByTestId } = render(<App />)
|
|
const content = getByTestId("content")
|
|
expect(content).toBeInTheDocument()
|
|
})
|