src/components/Input/__test__/input.focusable.spec.js
import React from 'react';
import { mount } from 'enzyme';
import Input from '..';
describe('<Input/>', () => {
it('should be focusable', () => {
const component = mount(<Input label="Input Label" />);
expect(component).toBeFocusable();
});
});