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