11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Button } from './'
|
|
|
|
describe('<Button />', () => {
|
|
it('should render', async () => {
|
|
const { getByText } = render(<Button>Submit</Button>)
|
|
expect(getByText('Submit')).toBeInTheDocument()
|
|
})
|
|
})
|