1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-28 00:27:40 +02:00
portfolio/tests/Project.test.jsx

17 lines
569 B
React
Raw Normal View History

2019-11-25 13:46:44 +01:00
import React from 'react'
import { render } from '@testing-library/react'
import { createHistory, createMemorySource } from '@reach/router'
2021-02-06 14:40:39 +01:00
import Project from '../src/pages/{ProjectsYaml.slug}'
import project from './__fixtures__/project.json'
2019-11-25 13:46:44 +01:00
describe('Project', () => {
const history = createHistory(createMemorySource('/oceanprotocol'))
it('renders correctly from data file values', async () => {
const { container } = render(
<Project data={project} location={history.location} />
)
expect(container.firstChild).toBeInTheDocument()
})
})