chitchatter/src/App.test.tsx
2022-08-08 21:04:37 -05:00

11 lines
267 B
TypeScript

import React from 'react'
import { render, screen } from '@testing-library/react'
import App from './App'
test('renders learn react link', () => {
render(<App />)
const linkElement = screen.getByText(/learn react/i)
expect(linkElement).toBeInTheDocument()
})