Skip to content
Snippets Groups Projects
Commit dcd2edca authored by Alexandros Georgantas's avatar Alexandros Georgantas
Browse files

Test folder for Chapter initialised

parent 0af2b737
No related branches found
No related tags found
No related merge requests found
import React from 'react'
import { shallow } from 'enzyme'
import { shallowToJson } from 'enzyme-to-json'
import sinon from 'sinon'
import ProgressItem from '../ProgressItem'
const { data } = global.mock
const type = 'front'
const chapters = data.chapters.filter((chapter) => {
return chapter.division === type
})
let props = {
chapter: chapters[0],
type: 'edit',
modalContainer: {},
update: sinon.spy(),
roles: []
}
const getWrapper = () => {
return shallow(<ProgressItem {...props} />)
}
test('should render correctly', () => {
const wrapper = getWrapper()
const tree = shallowToJson(wrapper)
expect(tree).toMatchSnapshot()
})
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment