1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-07-01 06:01:48 +02:00
portfolio/tests/resume.test.jsx

11 lines
305 B
React
Raw Normal View History

2019-08-11 21:47:22 +02:00
import React from 'react'
import { render } from '@testing-library/react'
2021-02-06 14:40:39 +01:00
import Resume from '../src/pages/resume'
2019-08-11 21:47:22 +02:00
describe('Resume', () => {
it('renders correctly from data file values', () => {
const { container } = render(<Resume />)
expect(container.firstChild).toBeInTheDocument()
})
})