mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Button } from '../Button'
|
|
|
|
describe('<Button />', () => {
|
|
it('should render', async () => {
|
|
const { getByText } = render(<Button>Submit</Button>)
|
|
expect(getByText('Submit')).toBeInTheDocument()
|
|
})
|
|
})
|