datahub/__tests__/index.test.tsx
2020-05-25 14:49:52 +01:00

11 lines
310 B
TypeScript

import React from 'react'
import { render } from '@testing-library/react'
import Index from '../pages/index'
test('renders homepage successfully', () => {
const { getByText } = render(<Index />)
const linkElement = getByText(
/Get started with Next.js/
)
expect(linkElement).toBeInTheDocument()
})