Website/db/app/pages/index.test.tsx
Mangiang c57646cf7b
Some checks failed
continuous-integration/drone/push Build is failing
feat: Fix layout
2021-12-18 22:34:07 -05:00

14 lines
465 B
TypeScript

import { render } from "test/utils"
import Home from "./index"
test.skip("renders blitz documentation link", () => {
// This is an example of how to ensure a specific item is in the document
// But it's disabled by default (by test.skip) so the test doesn't fail
// when you remove the the default content from the page
const { getByText } = render(<Home />)
const linkElement = getByText(/Documentation/i)
expect(linkElement).toBeInTheDocument()
})