9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
|
|
import Bootstrap from './Bootstrap'
|
|
|
|
test('renders', () => {
|
|
render(<Bootstrap />)
|
|
})
|