forked from Shiloh/old-remnantchat
11 lines
285 B
TypeScript
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()
|
|
})
|