remnantchat/src/Bootstrap.test.tsx
2022-08-09 09:35:49 -05:00

11 lines
285 B
TypeScript

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