1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-30 05:31:44 +02:00
portfolio/src/components/organisms/Footer.test.jsx

11 lines
272 B
React
Raw Normal View History

2019-04-16 21:21:01 +02:00
import React from 'react'
2019-05-30 22:55:12 +02:00
import { render } from '@testing-library/react'
2019-04-16 21:21:01 +02:00
import Footer from './Footer'
2019-11-10 14:40:45 +01:00
describe('Footer', () => {
2019-04-16 21:21:01 +02:00
it('renders correctly', () => {
const { container } = render(<Footer />)
expect(container.firstChild).toBeInTheDocument()
})
})