describe('<RemoveFromQueueButton onclick="{function}" />', () => {
  it('should trigger the function on button click', () => {
    const customMethod = sinon.spy()
    const wrapper = shallow(<RemoveFromQueueButton onClick={customMethod} />)
    const button = wrapper.dive().find('button')