mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-15 17:45:28 +01:00
11 lines
305 B
JavaScript
11 lines
305 B
JavaScript
import React from 'react'
|
|
import { render } from '@testing-library/react'
|
|
import Resume from '../src/pages/resume'
|
|
|
|
describe('Resume', () => {
|
|
it('renders correctly from data file values', () => {
|
|
const { container } = render(<Resume />)
|
|
expect(container.firstChild).toBeInTheDocument()
|
|
})
|
|
})
|