mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import Featured from './Featured'
|
|
|
|
describe('Featured', () => {
|
|
it('renders correctly', () => {
|
|
const { container } = render(<Featured />)
|
|
expect(container.firstChild).toBeInTheDocument()
|
|
})
|
|
})
|