mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 20:19:12 +00:00
19 lines
608 B
JavaScript
19 lines
608 B
JavaScript
/* eslint-env jest */
|
|
import * as React from 'react'
|
|
import { shallow } from 'enzyme'
|
|
import RoleDemo from '../demo'
|
|
import 'jest-styled-components'
|
|
|
|
describe('<RoleDemo />', () => {
|
|
it('renders', () => {
|
|
const demo = shallow(<RoleDemo role={{ name: 'test demo role', color: '#ffffff' }} />)
|
|
expect(demo).toMatchSnapshot()
|
|
})
|
|
|
|
it('changes state when clicked', () => {
|
|
const demo = shallow(<RoleDemo role={{ name: 'test demo role', color: '#ffffff' }} />)
|
|
expect(demo.state().active).toEqual(false)
|
|
demo.dive().simulate('click')
|
|
expect(demo.state().active).toEqual(true)
|
|
})
|
|
})
|