instantjob-recruiter-client
Version:
a set of tools for creating an instantjob recruiter react client
16 lines (14 loc) • 410 B
JSX
import React from 'react'
import {mount} from 'enzyme'
import SecondaryActions from 'components/utils/secondary_actions'
import expect from 'expect'
describe('SecondaryActions', () => {
it('should render', () => {
const secondary_actions_element = mount(
<SecondaryActions>
{[{label: 'test'}]}
</SecondaryActions>
)
expect(secondary_actions_element.html()).toExist()
})
})