2019-11-25 13:46:44 +01:00
|
|
|
import React from 'react'
|
|
|
|
import { render } from '@testing-library/react'
|
|
|
|
import { createHistory, createMemorySource } from '@reach/router'
|
2020-11-20 23:36:55 +01:00
|
|
|
import Project from '../{ProjectsYaml.slug}'
|
2020-03-07 03:11:52 +01:00
|
|
|
import project from '../../../jest/__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()
|
|
|
|
})
|
|
|
|
})
|