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()
  })
})
